wait4.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/wait4.c
blob: b3ae75e3229dc92c9af09eddd0cd4408913fcf2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define _GNU_SOURCE
#include <sys/wait.h>
#include <sys/resource.h>
#include <string.h>
#include "syscall.h"
pid_t wait4(pid_t pid, int *status, int options, struct rusage *usage)
{
	return syscall(SYS_wait4, pid, status, options, usage);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月07日 07:21:16 +0000

AltStyle によって変換されたページ (->オリジナル) /