![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/share/emscripten/system/include/libc/sys/ |
Upload File : |
#ifndef _SYS_SEM_H #define _SYS_SEM_H #ifdef __cplusplus extern "C" { #endif #include <features.h> #define __NEED_size_t #define __NEED_pid_t #define __NEED_time_t #ifdef _GNU_SOURCE #define __NEED_struct_timespec #endif #include <bits/alltypes.h> #include <sys/ipc.h> #define SEM_UNDO 0x1000 #define GETPID 11 #define GETVAL 12 #define GETALL 13 #define GETNCNT 14 #define GETZCNT 15 #define SETVAL 16 #define SETALL 17 #include <endian.h> #include <bits/sem.h> #define _SEM_SEMUN_UNDEFINED 1 #define SEM_STAT 18 #define SEM_INFO 19 struct seminfo { int semmap; int semmni; int semmns; int semmnu; int semmsl; int semopm; int semume; int semusz; int semvmx; int semaem; }; struct sembuf { unsigned short sem_num; short sem_op; short sem_flg; }; int semctl(int, int, int, ...); int semget(key_t, int, int); int semop(int, struct sembuf *, size_t); #ifdef _GNU_SOURCE int semtimedop(int, struct sembuf *, size_t, const struct timespec *); #endif #ifdef __cplusplus } #endif #endif