diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-03-01 10:55:22 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-03-01 10:57:02 -0800 |
commit | 3dbd4a16f8ae4da967f69fd93870462d1b3554f5 (patch) | |
tree | 8e504070388bf0ac098384b52f7d722362570d79 /pkg/abi | |
parent | 7693b7469f7464a88c1eb62f9479b73d5cee3921 (diff) |
Add semctl(GETPID) syscall
Also added unimplemented notification for semctl(2)
commands.
PiperOrigin-RevId: 236340672
Change-Id: I0795e3bd2e6d41d7936fabb731884df426a42478
Diffstat (limited to 'pkg/abi')
-rw-r--r-- | pkg/abi/linux/sem.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/abi/linux/sem.go b/pkg/abi/linux/sem.go index d1a0bdb32..b80c93daf 100644 --- a/pkg/abi/linux/sem.go +++ b/pkg/abi/linux/sem.go @@ -27,8 +27,9 @@ const ( // ipcs ctl cmds. Source: include/uapi/linux/sem.h const ( - SEM_STAT = 18 - SEM_INFO = 19 + SEM_STAT = 18 + SEM_INFO = 19 + SEM_STAT_ANY = 20 ) const SEM_UNDO = 0x1000 |