diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-10-07 11:14:27 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-10-07 11:14:27 +0000 |
commit | 89042c146eaefac41d6df99eeb2d2847ed3a3067 (patch) | |
tree | 7ca6c4b321333b53bae6279500177ae634fb9da3 | |
parent | 754c280835d516f3d6d78872f6eaecc70c10af43 (diff) | |
download | samba-89042c146eaefac41d6df99eeb2d2847ed3a3067.tar.gz samba-89042c146eaefac41d6df99eeb2d2847ed3a3067.tar.bz2 samba-89042c146eaefac41d6df99eeb2d2847ed3a3067.zip |
get rid of SIGCLD_IGNORE for HPUX. A user reported it causing lots
of defunct smbd processes.
Andrew
(This used to be commit bf1f8b1567cb46e3e73ae8dbb26f6228cf519c1f)
-rw-r--r-- | source3/include/includes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 2329553d23..d1afc34de9 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -563,7 +563,9 @@ char *mktemp(char *); /* No standard include */ #define USE_SETSID #define USE_SETRES #define DEFAULT_PRINTING PRINT_HPUX -#define SIGCLD_IGNORE +/* Ken Weiss <krweiss@ucdavis.edu> tells us that SIGCLD_IGNORE is + not good for HPUX */ +/* #define SIGCLD_IGNORE */ #endif /* HPUX */ |