diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:38:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-10-05 13:38:29 +0000 |
commit | f6c9fed7acaef5ff532a9cdf8d7f8a470fa7f73f (patch) | |
tree | b75b262ce9c3a201d2a55b417ea698cedc07dc17 /source3/lib/system.c | |
parent | f3c79936d7fc21d3257432962b23764ca00b0cbb (diff) | |
download | samba-f6c9fed7acaef5ff532a9cdf8d7f8a470fa7f73f.tar.gz samba-f6c9fed7acaef5ff532a9cdf8d7f8a470fa7f73f.tar.bz2 samba-f6c9fed7acaef5ff532a9cdf8d7f8a470fa7f73f.zip |
- use waitpid for ultrix
- don't use wait4
(This used to be commit 2aa612d676e634a892fdc50349f5b72732f0e91f)
Diffstat (limited to 'source3/lib/system.c')
-rw-r--r-- | source3/lib/system.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 5ece0ca024..995c6beed5 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -146,11 +146,7 @@ The wait() calls vary between systems ********************************************************************/ int sys_waitpid(pid_t pid,int *status,int options) { -#ifdef USE_WAITPID return waitpid(pid,status,options); -#else - return wait4(pid,status,options,NULL); -#endif } /******************************************************************* |