1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- modules/FvwmCommand/FvwmCommand.c 2003-07-06 15:34:07.000000000 +0100
+++ modules/FvwmCommand/FvwmCommand.c 2004-05-28 09:26:59.360540104 +0100
@@ -56,7 +56,6 @@
void sendit( char *cmd );
void receive( void );
static RETSIGTYPE sig_ttin(int);
-/* void sig_pipe( int ); */
static RETSIGTYPE sig_quit(int);
void usage(void);
int read_f(int fd, char *p, int len);
@@ -125,6 +124,7 @@
sigaction(SIGHUP, &sigact, NULL);
sigaction(SIGQUIT, &sigact, NULL);
sigaction(SIGTERM, &sigact, NULL);
+ sigaction(SIGPIPE, &sigact, NULL);
}
#else
#ifdef USE_BSD_SIGNALS
@@ -135,6 +135,7 @@
signal(SIGHUP, sig_quit);
signal(SIGQUIT, sig_quit);
signal(SIGTERM, sig_quit);
+ signal(SIGPIPE, sig_quit);
signal(SIGTTIN, sig_ttin);
signal(SIGTTOU, sig_ttin);
#ifdef HAVE_SIGINTERRUPT
@@ -142,6 +143,7 @@
siginterrupt(SIGHUP, 1);
siginterrupt(SIGQUIT, 1);
siginterrupt(SIGTERM, 1);
+ siginterrupt(SIGPIPE, 1);
siginterrupt(SIGTTIN, 0);
siginterrupt(SIGTTOU, 0);
#endif
|