Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2020. The current version is 1.90.0.
boost::process::limit_handles
// In header: <boost/process/handles.hpp> static unspecified limit_handles;
The limit_handles property sets all properties to be inherited only expcitly. It closes all unused file-descriptors on posix after the fork and removes the inherit flags on windows.
![]() |
Note |
|---|---|
This is executed after the fork on posix. |
system("gcc", limit_handles);
Since limit also closes the standard handles unless they are explicitly redirected they can be ignored by limit_handles in the following way.
system("gcc", limit_handles.allowStd())