1 2 3 4 5 6 7
#include <sys/sem.h> #include <syscall.h> int semop(int semid, struct sembuf *sops, size_t nsops) { return syscall(semop, semid, sops, nsops); }