blob: c8f336fdf2e114a222bce602cc9b865f2ad21f35 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- assa/GenServer.cpp.orig Wed Dec 24 16:14:51 2003
+++ assa/GenServer.cpp Wed Dec 24 17:24:09 2003
@@ -154,14 +154,14 @@
ignore_act.register_action( SIGPIPE );
ignore_act.register_action( SIGCHLD );
- ignore_act.register_action( SIGCLD );
+// ignore_act.register_action( SIGCLD );
ignore_act.register_action( SIGALRM );
/**
* Catch SIGPOLL - sigPOLL handler just does nothing except
* of catching signal.
*/
- m_sig_dispatcher.install ( SIGPOLL, &m_sig_poll );
+ m_sig_dispatcher.install ( SIGIO, &m_sig_poll );
/**
* SIGINT is generated by the terminal driver when an interrupt
|