I wonder if it is possible to start a new process with Boost.Interprocess in a crossplatform manner? Also I wonder if it is possible to start processes like echo
?
Asked
Active
Viewed 407 times
0

myWallJSON
- 9,110
- 22
- 78
- 149
-
1Boost.Interprocess is more about interprocess communication than anything else afaik, so I don't think you'll have luck with that. Maybe try asio? – Xeo Apr 17 '12 at 05:15
1 Answers
0
The interprocess module doesn't have any functions pertaining to actually creating new processes.
have a look at the system()
C function.

Michael Slade
- 13,802
- 2
- 39
- 44