/usr/include/boost/process
NameSizeModeActions
detail/-0755rm
args.hpp89680644editdlrm
async.hpp36830644editdlrm
async_pipe.hpp76940644editdlrm
async_system.hpp45350644editdlrm
child.hpp53090644editdlrm
cmd.hpp30720644editdlrm
env.hpp123010644editdlrm
environment.hpp247580644editdlrm
error.hpp66570644editdlrm
exception.hpp7100644editdlrm
exe.hpp25360644editdlrm
extend.hpp145850644editdlrm
group.hpp67600644editdlrm
handles.hpp30380644editdlrm
io.hpp199900644editdlrm
locale.hpp69680644editdlrm
pipe.hpp187630644editdlrm
posix.hpp28480644editdlrm
search_path.hpp17750644editdlrm
shell.hpp25890644editdlrm
spawn.hpp19290644editdlrm
start_dir.hpp34490644editdlrm
system.hpp40930644editdlrm
windows.hpp36750644editdlrm
Edit: /usr/include/boost/process/posix.hpp (2848B)
// Copyright (c) 2016 Klemens D. Morgenstern // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_PROCESS_POSIX_HPP_ #define BOOST_PROCESS_POSIX_HPP_ #include #include #include #include /** \file boost/process/posix.hpp * * Header which provides the posix extensions. \xmlonly namespace boost { namespace process { namespace posix { unspecified fd; unspecified sig; unspecified use_vfork; } } } * \endxmlonly * \warning Only available on posix. See the documentation of [fork](http://pubs.opengroup.org/onlinepubs/009695399/functions/fork.html), * [execve](http://pubs.opengroup.org/onlinepubs/009695399/functions/execve.html) and * [vfork](http://pubs.opengroup.org/onlinepubs/009695399/functions/vfork.html). * */ namespace boost { namespace process { ///Namespace containing the posix exensions. namespace posix { /** This property lets you modify file-descriptors other than the standard ones (0,1,2). * * It provides the functions `bind`, which implements [dup2](http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup.html) * and [close](http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html). * * Close can also be called with a range of file-descriptors to be closed. * */ constexpr ::boost::process::detail::posix::fd_ fd; /** This property lets you modify the handling of `SIGCHLD` for this call. It will be reset afterwards. It can be set to default, by the expression `sig.dfl()`, set to ignore with `sig.ign()` or assigned a custom handler. A custom handler must have the type `sighandler_t`and can be assigned with the following syntax: \code{.cpp} sig = handler; sig(handler); \endcode \warning @ref spawn will automatically use `sig.ign()`, which will override if you pass a custom handler. */ constexpr ::boost::process::detail::posix::sig_ sig; /** This property will replace the usage of [fork](http://pubs.opengroup.org/onlinepubs/9699919799/functions/fork.html) by [vfork](http://pubs.opengroup.org/onlinepubs/009695399/functions/vfork.html). \note `vfork` is no longer an official part of the posix standard. */ constexpr ::boost::process::detail::posix::use_vfork_ use_vfork; using ::boost::process::detail::posix::sighandler_t; }}} #endif /* BOOST_PROCESS_POSIX_HPP_ */