Hello community, here is the log from the commit of package strace checked in at Fri Apr 28 21:15:23 CEST 2006. -------- --- strace/strace.changes 2006-04-05 22:57:23.000000000 +0200 +++ STABLE/strace/strace.changes 2006-04-27 01:29:15.000000000 +0200 @@ -1,0 +2,6 @@ +Thu Apr 27 00:27:06 CEST 2006 - schwab@suse.de + +- Fix socket/ipc subcall decoding. +- Fix ioctl decoding. + +------------------------------------------------------------------- New: ---- ioctl.diff strace-socket-subcall.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ strace.spec ++++++ --- /var/tmp/diff_new_pack.vtGfyN/_old 2006-04-28 21:15:19.000000000 +0200 +++ /var/tmp/diff_new_pack.vtGfyN/_new 2006-04-28 21:15:19.000000000 +0200 @@ -16,7 +16,7 @@ Group: Development/Tools/Debuggers Autoreqprov: on Version: 4.5.14 -Release: 5 +Release: 11 Summary: A utility to trace the system calls of a program Source: strace-%{version}.tar.bz2 Patch: strace-%{version}.diff @@ -28,6 +28,8 @@ Patch9: strace-graph.diff Patch10: strace-openat-syscalls.patch Patch11: strace-pselect6.patch +Patch12: strace-socket-subcall.diff +Patch13: ioctl.diff URL: http://www.liacs.nl/~wichert/strace/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -55,6 +57,8 @@ %patch9 %patch10 -p1 %patch11 -p1 +%patch12 +%patch13 %build %{suse_update_config -f} @@ -80,6 +84,9 @@ %doc %{_mandir}/man1/strace.1.gz %changelog -n strace +* Thu Apr 27 2006 - schwab@suse.de +- Fix socket/ipc subcall decoding. +- Fix ioctl decoding. * Wed Apr 05 2006 - schwab@suse.de - Fix last change so it doesn't break ia64. - Add all other missing syscalls. ++++++ ioctl.diff ++++++ --- term.c +++ term.c @@ -414,7 +414,7 @@ case TIOCGPTN: #endif tprintf(", "); - printnum(tcp, arg, "%d"); + printnum_int(tcp, arg, "%d"); return 1; #if 0 ++++++ strace-socket-subcall.diff ++++++ --- linux/syscall.h +++ linux/syscall.h @@ -190,7 +190,11 @@ # undef SYS_sendmsg # undef SYS_recvmsg # endif /* IA64 */ +# ifdef POWERPC +# define SYS_socket_subcall 300 +# else # define SYS_socket_subcall 320 +#endif #define SYS_sub_socket (SYS_socket_subcall + 1) #define SYS_sub_bind (SYS_socket_subcall + 2) #define SYS_sub_connect (SYS_socket_subcall + 3) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de