summaryrefslogtreecommitdiff
path: root/desc.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2007-07-24 01:57:11 +0000
committerRoland McGrath <roland@redhat.com>2007-07-24 01:57:11 +0000
commit6afc5659acc3df3d2e446ba4aa3a76bdd7264e1b (patch)
tree0cb461527501df4e852247ac911f95681e9b92ea /desc.c
parentb912ffe5ccfb0b682f1c18f44f5cc1f0eb4cb1b9 (diff)
downloadstrace-6afc5659acc3df3d2e446ba4aa3a76bdd7264e1b.tar.gz
2007-07-23 Ulrich Drepper <drepper@redhat.com>
* defs.h: Add new parameter to printtv_bitness prototype. (printttv): Pass zero for the new parameter. (printtv_special): New macro. * desc.c (decode_select): Pass zero for the new parameter of printtv_bitness. * file.c (utimensatflags): New macro. (sys_osf_utimes): Pass zero for the new parameter of printtv_bitness. (sys_utimes): Likewise. (sys_futimesat): Likewise. (decode_utimes): Add new parameter. Pass it to the printtv_bitness calls. Fix printing of time values. (sys_utimensat): New function. * time.c (UTIME_NOW, UTIME_OMIT): Define if not already happened. (printtv_bitness): Add new parameter. Print special UTIME_* values as strings if set. (sys_osf_gettimeofday): Pass zero for the new parameter of printtv_bitness. (sys_osf_settimeofday): Likewise. * linux/syscall.h: Declare sys_utimensat. * linux/syscallent.h: Add utimensat entry. * linux/x86_64/syscallent.h: Likewise.
Diffstat (limited to 'desc.c')
-rw-r--r--desc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/desc.c b/desc.c
index caa7ccfc4..31af6c194 100644
--- a/desc.c
+++ b/desc.c
@@ -476,7 +476,7 @@ decode_select(struct tcb *tcp, long *args, enum bitness_t bitness)
}
free(fds);
tprintf(", ");
- printtv_bitness(tcp, args[4], bitness);
+ printtv_bitness(tcp, args[4], bitness, 0);
}
else
{