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 | bf1f8b1567cb46e3e73ae8dbb26f6228cf519c1f (patch) | |
tree | 454a90b34d7a47c32297af978cbdea8d5ed4ae4e /source | |
parent | 5a38eaac75a6bede2d946f69cf664d7ca3989b55 (diff) | |
download | samba-bf1f8b1567cb46e3e73ae8dbb26f6228cf519c1f.tar.gz samba-bf1f8b1567cb46e3e73ae8dbb26f6228cf519c1f.tar.xz samba-bf1f8b1567cb46e3e73ae8dbb26f6228cf519c1f.zip |
get rid of SIGCLD_IGNORE for HPUX. A user reported it causing lots
of defunct smbd processes.
Andrew
Diffstat (limited to 'source')
-rw-r--r-- | source/include/includes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/include/includes.h b/source/include/includes.h index 2329553d234..d1afc34de92 100644 --- a/source/include/includes.h +++ b/source/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 */ |