整理
This commit is contained in:
75
include/boost/process/v1/posix.hpp
Normal file
75
include/boost/process/v1/posix.hpp
Normal file
@@ -0,0 +1,75 @@
|
||||
// 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 <boost/process/v1/detail/posix/fd.hpp>
|
||||
#include <boost/process/v1/detail/posix/handler.hpp>
|
||||
#include <boost/process/v1/detail/posix/use_vfork.hpp>
|
||||
#include <boost/process/v1/detail/posix/signal.hpp>
|
||||
|
||||
|
||||
/** \file boost/process/posix.hpp
|
||||
*
|
||||
* Header which provides the posix extensions.
|
||||
\xmlonly
|
||||
<programlisting>
|
||||
namespace boost {
|
||||
namespace process { BOOST_PROCESS_V1_INLINE namespace v1 {
|
||||
namespace posix {
|
||||
<emphasis>unspecified</emphasis> <globalname alt="boost::process::v1::posix::fd">fd</globalname>;
|
||||
<emphasis>unspecified</emphasis> <globalname alt="boost::process::v1::posix::sig">sig</globalname>;
|
||||
<emphasis>unspecified</emphasis> <globalname alt="boost::process::v1::posix::use_vfork">use_vfork</globalname>;
|
||||
}
|
||||
}
|
||||
}
|
||||
</programlisting>
|
||||
* \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 { BOOST_PROCESS_V1_INLINE namespace v1 {
|
||||
|
||||
///Namespace containing the posix extensions.
|
||||
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::v1::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::v1::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::v1::detail::posix::use_vfork_ use_vfork;
|
||||
|
||||
|
||||
using ::boost::process::v1::detail::posix::sighandler_t;
|
||||
|
||||
}}}}
|
||||
|
||||
#endif /* BOOST_PROCESS_POSIX_HPP_ */
|
||||
Reference in New Issue
Block a user