tiny-process-library icon indicating copy to clipboard operation
tiny-process-library copied to clipboard

A small platform independent library making it simple to create and stop new processes in C++, as well as writing to stdin and reading from stdout and stderr of a new process

Results 3 tiny-process-library issues
Sort by recently updated
recently updated
newest added

Please consider adding optional support for setting the environment variables on process creation. On Windows: lpEnvironment On Linux: execle instead of execl

I have a problem not reliable getting outputs. A workaround i found is, sending "\n" via Process::write My Problem now is, that if the process exits write causes a crash....

Hi, I'd like to specify a priority when launching a process. For example, I want to launch a background process with a lower process priority than the main process. As...