Hello community, here is the log from the commit of package systemtap checked in at Tue May 22 18:34:24 CEST 2007. -------- --- systemtap/systemtap.changes 2007-05-21 12:24:53.000000000 +0200 +++ /mounts/work_src_done/STABLE/systemtap/systemtap.changes 2007-05-22 17:22:44.000000000 +0200 @@ -1,0 +2,10 @@ +Tue May 22 17:09:38 CEST 2007 - tiwai@suse.de + +- updated to snapshot 20070519: + * Updated temporary handlings + * Autoconf tweaks + * Performance improvements with const and temporary handlings + * Removed do_write and do_read probles, added aio_write, + aio_read, writev and readv probes. + +------------------------------------------------------------------- Old: ---- systemtap-20070421.tar.bz2 New: ---- systemtap-20070519.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ systemtap.spec ++++++ --- /var/tmp/diff_new_pack.i29194/_old 2007-05-22 18:33:57.000000000 +0200 +++ /var/tmp/diff_new_pack.i29194/_new 2007-05-22 18:33:57.000000000 +0200 @@ -12,11 +12,11 @@ Name: systemtap BuildRequires: gcc-c++ libebl-devel -%define package_version 20070421 +%define package_version 20070519 %define elfutils_version 0.127 License: GNU General Public License (GPL) Version: 0.5.14 -Release: 7 +Release: 9 Summary: Instrumentation System Group: Development/Tools/Debuggers URL: http://sourceware.org/systemtap/ @@ -66,6 +66,13 @@ %dir %attr(0755,root,root) /var/cache/systemtap %changelog +* Tue May 22 2007 - tiwai@suse.de +- updated to snapshot 20070519: + * Updated temporary handlings + * Autoconf tweaks + * Performance improvements with const and temporary handlings + * Removed do_write and do_read probles, added aio_write, + aio_read, writev and readv probes. * Mon May 21 2007 - tiwai@suse.de - use the external elfutils packages. * Tue Apr 24 2007 - tiwai@suse.de ++++++ systemtap-20070421.tar.bz2 -> systemtap-20070519.tar.bz2 ++++++ ++++ 4289 lines of diff (skipped) ++++++ systemtap-compile-warning-fixes.diff ++++++ --- /var/tmp/diff_new_pack.i29194/_old 2007-05-22 18:33:58.000000000 +0200 +++ /var/tmp/diff_new_pack.i29194/_new 2007-05-22 18:33:58.000000000 +0200 @@ -1,13 +1,16 @@ ---- runtime/staprun/mainloop.c-dist 2007-04-24 18:38:24.000000000 +0200 -+++ runtime/staprun/mainloop.c 2007-04-24 18:39:20.000000000 +0200 -@@ -300,7 +300,9 @@ int stp_main_loop(void) - switch (type) { - #ifdef STP_OLD_TRANSPORT - case STP_REALTIME_DATA: -- write(out_fd[0], data, nb - sizeof(int)); -+ if (write(out_fd[0], data, nb - sizeof(int)) != -+ (ssize_t)(nb - sizeof(int))) -+ fprintf(stderr, "WARNING: short STP_REALTIME_DATA written\n"); - break; - #endif - case STP_OOB_DATA: +--- runtime/staprun/mainloop.c-dist 2007-05-22 17:14:19.000000000 +0200 ++++ runtime/staprun/mainloop.c 2007-05-22 17:15:32.000000000 +0200 +@@ -21,9 +21,10 @@ int use_old_transport = 0; + void fatal_handler (int signum) + { + char *str = strsignal(signum); +- (void)write (STDERR_FILENO, ERR_MSG, sizeof(ERR_MSG)); +- (void)write (STDERR_FILENO, str, strlen(str)); +- (void)write (STDERR_FILENO, "\n", 1); ++ ssize_t err; ++ err = write (STDERR_FILENO, ERR_MSG, sizeof(ERR_MSG)); ++ err = write (STDERR_FILENO, str, strlen(str)); ++ err = write (STDERR_FILENO, "\n", 1); + _exit(-1); + + } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de