docs(src): fix some doxygen warnings (#2731)

This commit is contained in:
ReenigneArcher
2024-06-19 21:36:09 -04:00
committed by GitHub
parent 429019e47b
commit f3abf59fbf
12 changed files with 15 additions and 74 deletions

View File

@@ -1299,11 +1299,6 @@ namespace platf {
return TRUE;
}
/**
* @brief Attempt to gracefully terminate a process group.
* @param native_handle The job object handle.
* @return true if termination was successfully requested.
*/
bool
request_process_group_exit(std::uintptr_t native_handle) {
auto job_handle = (HANDLE) native_handle;
@@ -1348,11 +1343,6 @@ namespace platf {
return enum_ctx.requested_exit;
}
/**
* @brief Checks if a process group still has running children.
* @param native_handle The job object handle.
* @return true if processes are still running.
*/
bool
process_group_running(std::uintptr_t native_handle) {
JOBOBJECT_BASIC_ACCOUNTING_INFORMATION accounting_info;