diff options
author | dsmith <dsmith> | 2006-09-26 21:39:52 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2006-09-26 21:39:52 +0000 |
commit | 3ae203b24203fc169e39f7b733f11038aafa80ef (patch) | |
tree | 50ff792a57834d21fba71791276dd7de519bac13 /runtime/print.c | |
parent | cc6dac44fe06855e8d1f69f9582ba5525869c4ab (diff) | |
download | systemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.tar.gz systemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.tar.xz systemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.zip |
2006-09-26 David Smith <dsmith@redhat.com>
* README: Changed 'stpd' references to 'staprun'.
* README.doc: Ditto.
* TODO: Ditto.
* io.c: Ditto.
* print.c: Ditto.
* runtime.h: Ditto.
* bench2/bench.rb: Ditto.
Diffstat (limited to 'runtime/print.c')
-rw-r--r-- | runtime/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/print.c b/runtime/print.c index 904104f8..ae220f28 100644 --- a/runtime/print.c +++ b/runtime/print.c @@ -25,7 +25,7 @@ * _stp_print_flush() is called. * * The reason to do this is to allow multiple small prints to be combined then - * timestamped and sent together to stpd. This is more efficient than sending + * timestamped and sent together to staprun. This is more efficient than sending * numerous small packets. * * This function is called automatically when the print buffer is full. @@ -80,7 +80,7 @@ void _stp_print_flush (void) return; #ifdef STP_RELAYFS_MERGE - /* In merge-mode, stpd expects relayfs data to start with a 4-byte length */ + /* In merge-mode, staprun expects relayfs data to start with a 4-byte length */ /* followed by a 4-byte sequence number. In non-merge mode, anything goes. */ *((uint32_t *)pb->timestamp) = _stp_seq_inc(); |