diff options
author | hunt <hunt> | 2005-08-24 17:08:26 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-24 17:08:26 +0000 |
commit | 0776f3fc1729b62790889182b64e6823a8572128 (patch) | |
tree | 4dec324a10ea61fce3a113a8c6a712a38314a7a3 /runtime | |
parent | bb788f9f3b8c22489a5dc5659a935e272b0e9b64 (diff) | |
download | systemtap-steved-0776f3fc1729b62790889182b64e6823a8572128.tar.gz systemtap-steved-0776f3fc1729b62790889182b64e6823a8572128.tar.xz systemtap-steved-0776f3fc1729b62790889182b64e6823a8572128.zip |
2005-08-24 Martin Hunt <hunt@redhat.com>
* librelay.c (sigproc): Removed the "Exiting..."
message for now.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/stpd/ChangeLog | 5 | ||||
-rw-r--r-- | runtime/stpd/librelay.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/runtime/stpd/ChangeLog b/runtime/stpd/ChangeLog index cf17d5e1..a57e5a29 100644 --- a/runtime/stpd/ChangeLog +++ b/runtime/stpd/ChangeLog @@ -1,5 +1,10 @@ 2005-08-24 Martin Hunt <hunt@redhat.com> + * librelay.c (sigproc): Removed the "Exiting..." + message for now. + +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. diff --git a/runtime/stpd/librelay.c b/runtime/stpd/librelay.c index 7191c0a5..1bdc4814 100644 --- a/runtime/stpd/librelay.c +++ b/runtime/stpd/librelay.c @@ -592,7 +592,7 @@ static void sigproc(int signum __attribute__((unused))) { signal(SIGINT, sigproc); signal(SIGTERM, sigproc); - fprintf(stderr, "Exiting...\n"); + //fprintf(stderr, "Exiting...\n"); send_request(STP_EXIT, NULL, 0); } |