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/semop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipc/semop.c')
-rw-r--r--src/ipc/semop.c 12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ipc/semop.c b/src/ipc/semop.c
new file mode 100644
index 00000000..48d8a654
--- /dev/null
+++ b/src/ipc/semop.c
@@ -0,0 +1,12 @@
+#include <sys/sem.h>
+#include "syscall.h"
+#include "ipc.h"
+
+int semop(int id, struct sembuf *buf, size_t n)
+{
+#ifdef __NR_semop
+ return syscall3(__NR_semop, id, (long)buf, n);
+#else
+ return syscall5(__NR_ipc, IPCOP_semop, id, n, 0, (long)buf);
+#endif
+}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月08日 20:02:48 +0000

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