Changeset 1938

Show
Ignore:
Timestamp:
09/02/08 18:04:47 (3 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1936 r1938  
    112008-09-02  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/source_interpreter.c (cherokee_source_interpreter_spawn): 
     4        Ignores SIGCHLD trying to get rid as soon as possible of the zombi 
     5        processes that are generated randomly when the server spawns 
     6        php-cgi processes. 
    27 
    38        * admin/config.py (Config.serialize.sorter): Fixed sorting 
  • cherokee/trunk/cherokee/main_worker.c

    r1924 r1938  
    156156        act.sa_handler = SIG_IGN; 
    157157        sigaction (SIGPIPE, &act, NULL); 
     158        sigaction (SIGCHLD, &act, NULL); 
    158159 
    159160        /* Signal Handler */