semget.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/semget.c
blob: 5f110e3b18bb8e4ecad4f5ef3e68168c438818a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/sem.h>
#include "syscall.h"
#include "ipc.h"
int semget(key_t key, int n, int fl)
{
#ifdef SYS_semget
	return syscall(SYS_semget, key, n, fl);
#else
	return syscall(SYS_ipc, IPCOP_semget, key, n, fl);
#endif
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月25日 17:10:52 +0000

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