Ignore:
Timestamp:
Jun 7, 2010, 9:08:40 AM (15 years ago)
Author:
Silvan Scherrer
Message:

Samba Server 3.5: changes from 3.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/server/lib/util/become_daemon.c

    r414 r456  
    6969_PUBLIC_ void become_daemon(bool do_fork, bool no_process_group)
    7070{
     71#ifdef __OS2__
     72// fork daemonize scheme not working in os/2, thus the parent process will currently kill and reap all children when it exits
     73        do_fork = False;
     74#endif
    7175        if (do_fork) {
    7276                if (sys_fork()) {
Note: See TracChangeset for help on using the changeset viewer.