aboutsummaryrefslogtreecommitdiff
path: root/tests-mx32/ipc_sem.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-07-05 13:54:44 -0700
committerElliott Hughes <enh@google.com>2017-07-05 17:24:40 -0700
commitdc75b01004a0588c1eb3bc26d7248a6e473b2cdd (patch)
tree4e293d63e61351539e549cbe28a69efbc24136d6 /tests-mx32/ipc_sem.c
parent5168b2b17e16c0ce1e5572080c46cb6ad4a2fecd (diff)
downloadstrace-dc75b01004a0588c1eb3bc26d7248a6e473b2cdd.tar.gz
Update strace to 4.18.
Noteworthy changes in release 4.18 (2017-07-05) =============================================== * Improvements * Implemented decoding of SCM_TIMESTAMP* control messages. * Implemented decoding of netlink NLMSG_DONE messages. * Implemented decoding of netlink generic nlmsg_type and nlmsg_flags. * Implemented decoding of NETLINK_AUDIT, NETLINK_NETFILTER, NETLINK_ROUTE, NETLINK_SELINUX, NETLINK_SOCK_DIAG, and NETLINK_XFRM message types. * Implemented decoding of NETLINK_GENERIC protocol families. * Implemented basic protocol specific decoding of AF_INET, AF_INET6, AF_NETLINK, AF_PACKET, AF_SMC, and AF_UNIX messages of NETLINK_SOCK_DIAG. * Implemented basic decoding of netlink attributes. * Implemented basic protocol specific decoding of AF_INET, AF_NETLINK, AF_PACKET, AF_SMC, and AF_UNIX netlink attributes of NETLINK_SOCK_DIAG. * Implemented decoding of inet_diag_msg, netlink_diag_msg, and unix_diag_msg netlink attributes of NETLINK_SOCK_DIAG. * Updated lists of ARPHRD_*, KEYCTL_*, NDIAG_SHOW_*, RTM_*, SCM_*, SCTP_*, SO_*, V4L2_*, and prctl ARCH_* constants. * Updated lists of ioctl commands from Linux 4.12. * Bug fixes * In interactive mode (-I2), those signals that were blocked at startup will remain blocked for the whole period of strace execution. * strace no longer resets SIGCHLD handler in tracees to the default action. * When traced command is terminated by a blocked signal, strace unblocks that signal to ensure its own termination with the same signal. * Fixed corner cases in decoding of old sigaction syscall. * Fixed build with old kernel headers on mips. * Fixed build on aarch64 and tile with glibc >= 2.26. * Fixed build on arc and nios2. Bug: N/A Test: strace date Change-Id: Ib34873ff60824b04f67332380c3460721f66002e
Diffstat (limited to 'tests-mx32/ipc_sem.c')
-rw-r--r--tests-mx32/ipc_sem.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests-mx32/ipc_sem.c b/tests-mx32/ipc_sem.c
index 0b730c11..c8832726 100644
--- a/tests-mx32/ipc_sem.c
+++ b/tests-mx32/ipc_sem.c
@@ -37,10 +37,10 @@
#include "xlat/resource_flags.h"
union semun {
- int val; /* Value for SETVAL */
- struct semid_ds *buf; /* Buffer for IPC_STAT, IPC_SET */
- unsigned short *array; /* Array for GETALL, SETALL */
- struct seminfo *__buf; /* Buffer for IPC_INFO
+ int val; /* Value for SETVAL */
+ struct semid_ds *buf; /* Buffer for IPC_STAT, IPC_SET */
+ unsigned short *array; /* Array for GETALL, SETALL */
+ struct seminfo *__buf; /* Buffer for IPC_INFO
(Linux-specific) */
};