Searched defs:group_handle (Results 1 – 3 of 3) sorted by relevance
16 struct group_handle struct18 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() function32 group_handle(group_handle && c) : grp(c.grp) in group_handle() argument37 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 …]
104 struct group_handle struct109 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() function121 group_handle() : group_handle(::boost::winapi::CreateJobObjectW(nullptr, nullptr)) in group_handle() argument125 ~group_handle() in ~group_handle()131 group_handle(group_handle && c) : _job_object(c._job_object), in group_handle() function138 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 …]
66 typedef ::boost::process::detail::api::group_handle group_handle; typedef in boost::process::group