Changeset 1532

Show
Ignore:
Timestamp:
06/08/04 21:27:12 (20 years ago)
Author:
jalet
Message:

Doesn't ignore SIGCHLD anymore

Location:
pykota/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/NEWS

    r1527 r1532  
    2828           
    2929        - Extended some PATH in the shell scripts   
     30         
     31        - Deleting an user now also deletes his payments history. 
     32         
     33        - Doesn't explicitely ignore SIGCHLD anymore. This seems to 
     34          cause problems. 
    3035 
    3136    - 1.19alpha18 : 
  • pykota/trunk/pykota/tool.py

    r1529 r1532  
    2222# 
    2323# $Log$ 
     24# Revision 1.98  2004/06/08 19:27:12  jalet 
     25# Doesn't ignore SIGCHLD anymore 
     26# 
    2427# Revision 1.97  2004/06/07 22:45:35  jalet 
    2528# Now accepts a job when enforcement is STRICT and predicted account balance 
     
    842845        self.gotSigTerm = 0 
    843846        signal.signal(signal.SIGTERM, signal.SIG_IGN) 
    844         signal.signal(signal.SIGCHLD, signal.SIG_IGN) 
     847        # signal.signal(signal.SIGCHLD, signal.SIG_IGN) 
    845848        signal.signal(signal.SIGPIPE, signal.SIG_IGN) 
    846849