From bae549e91b1bf0d2261d1137c7f2bf08180ad9e6 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 5 Feb 2014 01:46:10 +0000 Subject: Convert sigev_value to XLAT form * time.c (sigev_value): Convert to XLAT form. (printsigevent32, printsigevent): Update use of sigev_value. --- time.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/time.c b/time.c index 3c50b80..8975cc7 100644 --- a/time.c +++ b/time.c @@ -757,10 +757,10 @@ sys_clock_adjtime(struct tcb *tcp) # define SIGEV_THREAD_ID 4 #endif static const struct xlat sigev_value[] = { - { SIGEV_SIGNAL+1, "SIGEV_SIGNAL" }, - { SIGEV_NONE+1, "SIGEV_NONE" }, - { SIGEV_THREAD+1, "SIGEV_THREAD" }, - { SIGEV_THREAD_ID+1, "SIGEV_THREAD_ID" }, + XLAT(SIGEV_SIGNAL), + XLAT(SIGEV_NONE), + XLAT(SIGEV_THREAD), + XLAT(SIGEV_THREAD_ID), { 0, NULL } }; @@ -789,7 +789,7 @@ printsigevent32(struct tcb *tcp, long arg) tprintf("%s, ", signame(sev.sigev_signo)); else tprintf("%u, ", sev.sigev_signo); - printxval(sigev_value, sev.sigev_notify + 1, "SIGEV_???"); + printxval(sigev_value, sev.sigev_notify, "SIGEV_???"); tprints(", "); if (sev.sigev_notify == SIGEV_THREAD_ID) tprintf("{%d}", sev.un.tid); @@ -823,7 +823,7 @@ printsigevent(struct tcb *tcp, long arg) tprintf("%s, ", signame(sev.sigev_signo)); else tprintf("%u, ", sev.sigev_signo); - printxval(sigev_value, sev.sigev_notify+1, "SIGEV_???"); + printxval(sigev_value, sev.sigev_notify, "SIGEV_???"); tprints(", "); if (sev.sigev_notify == SIGEV_THREAD_ID) #if defined(HAVE_STRUCT_SIGEVENT__SIGEV_UN__PAD) -- cgit v1.2.3