shmctl.c\ipc\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/ipc/shmctl.c
blob: ae6ce69ecd73053f1b1c53ee0b35c73c85addfb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/shm.h>
#include "syscall.h"
#include "ipc.h"
int shmctl(int id, int cmd, struct shmid_ds *buf)
{
#ifdef SYS_shmctl
	return syscall(SYS_shmctl, id, cmd | IPC_MODERN, buf);
#else
	return syscall(SYS_ipc, IPCOP_shmctl, id, cmd | IPC_MODERN, 0, buf, 0);
#endif
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月22日 13:43:48 +0000

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