forked from pool/systemtap
This commit is contained in:
parent
d7a294e2d7
commit
c1179b039d
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1d6c24d9951dcf49f451372f0a09ec66259dce60fc548de196cfc8f4cbeb829f
|
|
||||||
size 686764
|
|
3
systemtap-20070519.tar.bz2
Normal file
3
systemtap-20070519.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:86712210e71f9020531efc6232cce07cbba3e3f1c67004a0c5603508b61fc088
|
||||||
|
size 691419
|
@ -1,13 +1,16 @@
|
|||||||
--- runtime/staprun/mainloop.c-dist 2007-04-24 18:38:24.000000000 +0200
|
--- runtime/staprun/mainloop.c-dist 2007-05-22 17:14:19.000000000 +0200
|
||||||
+++ runtime/staprun/mainloop.c 2007-04-24 18:39:20.000000000 +0200
|
+++ runtime/staprun/mainloop.c 2007-05-22 17:15:32.000000000 +0200
|
||||||
@@ -300,7 +300,9 @@ int stp_main_loop(void)
|
@@ -21,9 +21,10 @@ int use_old_transport = 0;
|
||||||
switch (type) {
|
void fatal_handler (int signum)
|
||||||
#ifdef STP_OLD_TRANSPORT
|
{
|
||||||
case STP_REALTIME_DATA:
|
char *str = strsignal(signum);
|
||||||
- write(out_fd[0], data, nb - sizeof(int));
|
- (void)write (STDERR_FILENO, ERR_MSG, sizeof(ERR_MSG));
|
||||||
+ if (write(out_fd[0], data, nb - sizeof(int)) !=
|
- (void)write (STDERR_FILENO, str, strlen(str));
|
||||||
+ (ssize_t)(nb - sizeof(int)))
|
- (void)write (STDERR_FILENO, "\n", 1);
|
||||||
+ fprintf(stderr, "WARNING: short STP_REALTIME_DATA written\n");
|
+ ssize_t err;
|
||||||
break;
|
+ err = write (STDERR_FILENO, ERR_MSG, sizeof(ERR_MSG));
|
||||||
#endif
|
+ err = write (STDERR_FILENO, str, strlen(str));
|
||||||
case STP_OOB_DATA:
|
+ err = write (STDERR_FILENO, "\n", 1);
|
||||||
|
_exit(-1);
|
||||||
|
|
||||||
|
}
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 21 12:24:15 CEST 2007 - tiwai@suse.de
|
Mon May 21 12:24:15 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
Name: systemtap
|
Name: systemtap
|
||||||
BuildRequires: gcc-c++ libebl-devel
|
BuildRequires: gcc-c++ libebl-devel
|
||||||
%define package_version 20070421
|
%define package_version 20070519
|
||||||
%define elfutils_version 0.127
|
%define elfutils_version 0.127
|
||||||
License: GNU General Public License (GPL)
|
License: GNU General Public License (GPL)
|
||||||
Version: 0.5.14
|
Version: 0.5.14
|
||||||
Release: 7
|
Release: 9
|
||||||
Summary: Instrumentation System
|
Summary: Instrumentation System
|
||||||
Group: Development/Tools/Debuggers
|
Group: Development/Tools/Debuggers
|
||||||
URL: http://sourceware.org/systemtap/
|
URL: http://sourceware.org/systemtap/
|
||||||
@ -66,6 +66,13 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%dir %attr(0755,root,root) /var/cache/systemtap
|
%dir %attr(0755,root,root) /var/cache/systemtap
|
||||||
|
|
||||||
%changelog
|
%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
|
* Mon May 21 2007 - tiwai@suse.de
|
||||||
- use the external elfutils packages.
|
- use the external elfutils packages.
|
||||||
* Tue Apr 24 2007 - tiwai@suse.de
|
* Tue Apr 24 2007 - tiwai@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user