File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -885,6 +885,11 @@ GENL_ID_CTRL
885885GENL_MAX_ID
886886GENL_MIN_ID
887887GENL_NAMSIZ
888+ GETALL
889+ GETNCNT
890+ GETPID
891+ GETVAL
892+ GETZCNT
888893GLOB_ABORTED
889894GLOB_APPEND
890895GLOB_DOOFFS
@@ -2744,6 +2749,12 @@ SEEK_DATA
27442749SEEK_HOLE
27452750SELFMAG
27462751SEM_FAILED
2752+ SEM_INFO
2753+ SEM_STAT
2754+ SEM_STAT_ANY
2755+ SEM_UNDO
2756+ SETALL
2757+ SETVAL
27472758SFD_CLOEXEC
27482759SFD_NONBLOCK
27492760SHM_EXEC
Original file line number Diff line number Diff line change @@ -3018,6 +3018,19 @@ pub const MSG_NOERROR: c_int = 0o10000;
30183018pub const MSG_EXCEPT : c_int = 0o20000 ;
30193019pub const MSG_ZEROCOPY : c_int = 0x4000000 ;
30203020
3021+ pub const SEM_UNDO : c_int = 0x1000 ;
3022+
3023+ pub const GETPID : c_int = 11 ;
3024+ pub const GETVAL : c_int = 12 ;
3025+ pub const GETALL : c_int = 13 ;
3026+ pub const GETNCNT : c_int = 14 ;
3027+ pub const GETZCNT : c_int = 15 ;
3028+ pub const SETVAL : c_int = 16 ;
3029+ pub const SETALL : c_int = 17 ;
3030+ pub const SEM_STAT : c_int = 18 ;
3031+ pub const SEM_INFO : c_int = 19 ;
3032+ pub const SEM_STAT_ANY : c_int = 20 ;
3033+
30213034pub const SHM_R : c_int = 0o400 ;
30223035pub const SHM_W : c_int = 0o200 ;
30233036
You can’t perform that action at this time.
0 commit comments