| OLD | NEW |
| 1 #include <sys/sem.h> | 1 #include <sys/sem.h> |
| 2 #include "syscall.h" | 2 #include "syscall.h" |
| 3 #include "ipc.h" | 3 #include "ipc.h" |
| 4 | 4 |
| 5 int semop(int id, struct sembuf *buf, size_t n) | 5 int semop(int id, struct sembuf* buf, size_t n) { |
| 6 { | |
| 7 #ifdef SYS_semop | 6 #ifdef SYS_semop |
| 8 » return syscall(SYS_semop, id, buf, n); | 7 return syscall(SYS_semop, id, buf, n); |
| 9 #else | 8 #else |
| 10 » return syscall(SYS_ipc, IPCOP_semop, id, n, 0, buf); | 9 return syscall(SYS_ipc, IPCOP_semop, id, n, 0, buf); |
| 11 #endif | 10 #endif |
| 12 } | 11 } |
| OLD | NEW |