python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to communicate with child process asynchronously?
I have a parent GUI app built with GTKmm, and I need to spawn a child process (another GUI app) and communicate with it. I use boost::process to do that. I know that I should do it asynchronously, so ...
Wasenshi
Votes: 0
Answers: 1
How to send SIGTERM to a child process using boost::process
boost/process.hpp provides a nice mechanism to spawn and manage processes.
It provides a child.terminate() method to send SIGKILL to a child.
How would I alternatively send SIGINT or SIGTERM to a chil...
CraigDavid
Votes: 0
Answers: 1
Building Boost with Process by Conan
I'm using Conan to manage my dependencies; my project requires Process and Interprocess components. How can I add these components to my Boost build with Conan? I'm using Boost 1.75 and Conan 1.44 on ...
SigSegv
Votes: 0
Answers: 0