summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-01 19:37:22 +0000
committerjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-01 19:37:22 +0000
commit1568287c2297c291f56a824e659578fbbebfc9fa (patch)
treefa255fd9a45f0c912ab31cba8185dea5ac62de58 /apps
parente345e4436523ac973d137838c271522e7df3d2f2 (diff)
downloadATCD-1568287c2297c291f56a824e659578fbbebfc9fa.tar.gz
Changed SIGUSR1 to SIGUSR2 to accomodate Linux Threads. Thanks goes to
Ravi Nagabhyru <ravi@future-minds.com> for finding this problem.
Diffstat (limited to 'apps')
-rw-r--r--apps/JAWS/server/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/JAWS/server/main.cpp b/apps/JAWS/server/main.cpp
index 70bb360c5c0..6ec6c36fe23 100644
--- a/apps/JAWS/server/main.cpp
+++ b/apps/JAWS/server/main.cpp
@@ -33,7 +33,7 @@ main (int argc, char *argv[])
// SigAction not needed since the handler will shutdown the server.
ACE_OS::signal (SIGINT, (ACE_SignalHandler) handler);
- ACE_OS::signal (SIGUSR1, (ACE_SignalHandler) handler);
+ ACE_OS::signal (SIGUSR2, (ACE_SignalHandler) handler);
if (daemon.open (argc, argv) != 0)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open"), 1);