public inbox for systemtap-cvs@sourceware.org
help / color / mirror / Atom feed
* src/runtime/stpd ChangeLog Makefile librelay.c ...
@ 2005-08-24 16:27 hunt
  0 siblings, 0 replies; 5+ messages in thread
From: hunt @ 2005-08-24 16:27 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	hunt@sourceware.org	2005-08-24 16:27:38

Modified files:
	runtime/stpd   : ChangeLog Makefile librelay.c librelay.h 

Log message:
	2005-08-24  Martin Hunt  <hunt@redhat.com>
	
	* librelay.c (sigproc): Reestablish signal handler so
	impatient people don't hit ^C twice and terminate the
	program before it saves the data and removes the module.
	Also print a message to stderr that it is exiting.
	(stp_main_loop): Write OOB data (warnings, errors, etc)
	to stderr instead of stdout.
	* librelay.h: Write debug info to stderr.
	* Makefile: add librelay.h to dependencies.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/ChangeLog.diff?cvsroot=systemtap&r1=1.23&r2=1.24
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/Makefile.diff?cvsroot=systemtap&r1=1.6&r2=1.7
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.c.diff?cvsroot=systemtap&r1=1.24&r2=1.25
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.h.diff?cvsroot=systemtap&r1=1.5&r2=1.6


^ permalink raw reply	[flat|nested] 5+ messages in thread

* src/runtime/stpd ChangeLog Makefile librelay.c ...
@ 2006-09-26 21:38 dsmith
  0 siblings, 0 replies; 5+ messages in thread
From: dsmith @ 2006-09-26 21:38 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	dsmith@sourceware.org	2006-09-26 21:38:35

Modified files:
	runtime/stpd   : ChangeLog Makefile librelay.c stpd.c 

Log message:
	2006-09-26  David Smith  <dsmith@redhat.com>
	
	* Makefile: Changed 'stpd' references to 'staprun'.
	* librelay.c: Ditto.
	* stpd.c: Ditto.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/runtime/stpd/ChangeLog.diff?cvsroot=systemtap&r1=1.50&r2=1.51
http://sourceware.org/cgi-bin/cvsweb.cgi/src/runtime/stpd/Makefile.diff?cvsroot=systemtap&r1=1.7&r2=1.8
http://sourceware.org/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.c.diff?cvsroot=systemtap&r1=1.46&r2=1.47
http://sourceware.org/cgi-bin/cvsweb.cgi/src/runtime/stpd/stpd.c.diff?cvsroot=systemtap&r1=1.25&r2=1.26


^ permalink raw reply	[flat|nested] 5+ messages in thread

* src/runtime/stpd ChangeLog Makefile librelay.c ...
@ 2005-08-22 19:07 hunt
  0 siblings, 0 replies; 5+ messages in thread
From: hunt @ 2005-08-22 19:07 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	hunt@sourceware.org	2005-08-22 19:06:50

Modified files:
	runtime/stpd   : ChangeLog Makefile librelay.c librelay.h 

Log message:
	2005-08-22  Martin Hunt  <hunt@redhat.com>
	
	* Makefile (debug): Add debug target.
	* librelay.h (dbug): Define.
	* librelay.c: Enable some dbug lines.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/ChangeLog.diff?cvsroot=systemtap&r1=1.20&r2=1.21
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/Makefile.diff?cvsroot=systemtap&r1=1.5&r2=1.6
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.c.diff?cvsroot=systemtap&r1=1.21&r2=1.22
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.h.diff?cvsroot=systemtap&r1=1.4&r2=1.5


^ permalink raw reply	[flat|nested] 5+ messages in thread

* src/runtime/stpd ChangeLog Makefile librelay.c ...
@ 2005-08-01 21:40 hunt
  0 siblings, 0 replies; 5+ messages in thread
From: hunt @ 2005-08-01 21:40 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	hunt@sourceware.org	2005-08-01 21:40:52

Modified files:
	runtime/stpd   : ChangeLog Makefile librelay.c librelay.h stpd.c 

Log message:
	2005-08-01  Martin Hunt  <hunt@redhat.com>
	
	* librelay.h: Get structs and enums from
	../transport/transport_msgs.h  to eliminate duplication.
	
	* librelay.c (send_request): Retry if send fails.
	(open_relayfs_files): Use fopen() instead of open() for the
	percpu tmpfiles.
	(request_last_buffers): Just send cpu number for STP_BUF_INFO request.
	(reader_thread): Ditto.
	(process_subbufs): Use fwrite_unlocked() instead of write().
	(sigchld): Removed.
	(init_stp): Go back to using system() instead of fork and exec
	to load module. When done, send a TRANSPORT_INFO request.
	(cleanup_and_exit): Change parameter to simple flag to
	indicate if the module needs removing.
	(sigproc): Remove complicated logic and just send STP_EXIT.
	(stp_main_loop): When receiving STP_TRANSPORT_INFO, set
	the local params and reply with a STP_START.  When
	receiving STP_START, there was an error, so cleanup and exit.
	
	* stpd.c (main): Added new options to set number of
	buffers and their size.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/ChangeLog.diff?cvsroot=systemtap&r1=1.12&r2=1.13
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/Makefile.diff?cvsroot=systemtap&r1=1.4&r2=1.5
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.c.diff?cvsroot=systemtap&r1=1.13&r2=1.14
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.h.diff?cvsroot=systemtap&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/stpd.c.diff?cvsroot=systemtap&r1=1.7&r2=1.8


^ permalink raw reply	[flat|nested] 5+ messages in thread

* src/runtime/stpd ChangeLog Makefile librelay.c ...
@ 2005-06-28 17:57 hunt
  0 siblings, 0 replies; 5+ messages in thread
From: hunt @ 2005-06-28 17:57 UTC (permalink / raw)
  To: systemtap-cvs

CVSROOT:	/cvs/systemtap
Module name:	src
Changes by:	hunt@sourceware.org	2005-06-28 17:57:28

Modified files:
	runtime/stpd   : ChangeLog Makefile librelay.c 
Added files:
	runtime/stpd   : stp_merge.c 

Log message:
	2005-06-28  Martin Hunt  <hunt@redhat.com>
	
	* librelay.c (merge_output): Use unlocked stdio
	to improve speed.
	
	* stp_merge.c: New file.
	
	* Makefile: Add stp_merge.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/stp_merge.c.diff?cvsroot=systemtap&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/ChangeLog.diff?cvsroot=systemtap&r1=1.3&r2=1.4
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/Makefile.diff?cvsroot=systemtap&r1=1.2&r2=1.3
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/runtime/stpd/librelay.c.diff?cvsroot=systemtap&r1=1.6&r2=1.7


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-09-26 21:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-08-24 16:27 src/runtime/stpd ChangeLog Makefile librelay.c hunt
  -- strict thread matches above, loose matches on Subject: below --
2006-09-26 21:38 dsmith
2005-08-22 19:07 hunt
2005-08-01 21:40 hunt
2005-06-28 17:57 hunt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).