Home
last modified time | relevance | path

Searched defs:group_handle (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/process/detail/posix/
Dgroup_handle.hpp16 struct group_handle struct
18 pid_t grp = -1;
20 typedef pid_t handle_t;
21 handle_t handle() const { return grp; } in handle()
23 explicit group_handle(handle_t h) : in group_handle() function
32 group_handle(group_handle && c) : grp(c.grp) in group_handle() argument
37 group_handle &operator=(group_handle && c) in operator =()
44 void add(handle_t proc) in add()
49 void add(handle_t proc, std::error_code & ec) noexcept in add()
55 bool has(handle_t proc) in has()
[all …]
/third_party/boost/boost/process/detail/windows/
Dgroup_handle.hpp104 struct group_handle struct
109 typedef ::boost::winapi::HANDLE_ handle_t;
110 handle_t handle() const { return _job_object; } in handle()
112 explicit group_handle(handle_t h) : in group_handle() function
121 group_handle() : group_handle(::boost::winapi::CreateJobObjectW(nullptr, nullptr)) in group_handle() argument
125 ~group_handle() in ~group_handle()
131 group_handle(group_handle && c) : _job_object(c._job_object), in group_handle() function
138 group_handle &operator=(group_handle && c) in operator =()
150 void add(handle_t proc) in add()
155 void add(handle_t proc, std::error_code & ec) noexcept in add()
[all …]
/third_party/boost/boost/process/
Dgroup.hpp66 typedef ::boost::process::detail::api::group_handle group_handle; typedef in boost::process::group