diff options
author | Andreas Jaeger <aj@suse.de> | 2013-03-06 16:35:19 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2013-03-06 16:35:19 +0100 |
commit | 67525cb83217602994d2b75c4a07c9d92705079f (patch) | |
tree | dafb888df124aadc9bca3634f75ca5b2cf38ca35 /sysdeps/unix/sysv/linux/s390 | |
parent | 5c56e933683b20ce48512ca1c17c3d7a967998fb (diff) | |
download | glibc-67525cb83217602994d2b75c4a07c9d92705079f.tar.gz glibc-67525cb83217602994d2b75c4a07c9d92705079f.tar.xz glibc-67525cb83217602994d2b75c4a07c9d92705079f.zip |
Sync with Linux 3.8
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/bits/msq.h | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/sys/ptrace.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/bits/msq.h b/sysdeps/unix/sysv/linux/s390/bits/msq.h index 5a1f6b29e1..a5eaf89ddf 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/msq.h +++ b/sysdeps/unix/sysv/linux/s390/bits/msq.h @@ -26,6 +26,7 @@ #define MSG_NOERROR 010000 /* no error if message is too big */ #ifdef __USE_GNU # define MSG_EXCEPT 020000 /* recv any msg except of specified type */ +# define MSG_COPY 040000 /* copy (not remove) all queue messages */ #endif /* Types used in the structure definition. */ diff --git a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h index b9062dc1ae..ca2ebb9590 100644 --- a/sysdeps/unix/sysv/linux/s390/sys/ptrace.h +++ b/sysdeps/unix/sysv/linux/s390/sys/ptrace.h @@ -175,7 +175,8 @@ enum __ptrace_setoptions PTRACE_O_TRACEVFORKDONE = 0x00000020, PTRACE_O_TRACEEXIT = 0x00000040, PTRACE_O_TRACESECCOMP = 0x00000080, - PTRACE_O_MASK = 0x000000ff + PTRACE_O_EXITKILL = 0x00100000, + PTRACE_O_MASK = 0x001000ff }; /* Wait extended result codes for the above trace options. */ |