cpp-subprocess icon indicating copy to clipboard operation
cpp-subprocess copied to clipboard

Subprocessing with modern C++

Results 39 cpp-subprocess issues
Sort by recently updated
recently updated
newest added

First - thank you for this effort. I just noticed the repository... I was wondering what the pros and cons of cpp-subprocess are relative to other C++ libraries regarding process...

The issue here is basically that there's no way to specify a timeout. I hacked the code myself with a new exception type, a global constant for timeout, and a...

Hi, I just noticed that my program is busy-looping and thus using up a lot of CPU resources while waiting for a subprocess to finish. I'm using the Popen class....

Will conan support be beneficial for the project? I understand this is header-only, but sometimes it's more convenient to just use conan as if it was reguar project. I'll be...

I am using function read_all() but process is blocking. I find this happen here: int read_bytes = read(fd, buf + rbytes, read_upto - rbytes); Solution: ```int read_bytes = 0; fd_set...

In python, it can be directed by passing stdout.

Fixed a minor typo in the README for this project

i tryed your program and run into an error, saw you fixed all other _MSC_VER to __USING_WINDOWS__ and it fixed my error. :)

https://github.com/arun11299/cpp-subprocess/blob/718d0c816a47f5a0d2efb48b9d0ed34c7e255acb/subprocess.hpp#L216 The three functions there need an inline statement to not produce linker errors. Cheers!