msgctl.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/msgctl.c
blob: 4372c71939cad44717423282cc6382842ffed1bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/msg.h>
#include "syscall.h"
#include "ipc.h"
int msgctl(int q, int cmd, struct msqid_ds *buf)
{
#ifdef SYS_msgctl
	return syscall(SYS_msgctl, q, cmd | IPC_64, buf);
#else
	return syscall(SYS_ipc, IPCOP_msgctl, q, cmd | IPC_64, 0, buf, 0);
#endif
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 21:12:09 +0000

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