mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
12 lines
278 B
C
12 lines
278 B
C
#pragma once
|
|
#include "types.h"
|
|
|
|
/**
|
|
* @brief 等待指定pid的子进程退出
|
|
*
|
|
* @param pid 子进程的pid
|
|
* @param stat_loc 返回的子进程结束状态
|
|
* @param options 额外的控制选项
|
|
* @return pid_t
|
|
*/
|
|
pid_t waitpid(pid_t pid, int *stat_loc, int options); |