Changeset 1696

Show
Ignore:
Timestamp:
07/28/08 10:34:53 (5 months ago)
Author:
alo
Message:

--

Files:

Legend:

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

    r1695 r1696  
    112008-07-28  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * admin/CherokeeManagement.py (is_PID_alive): Added a new case to 
     4        support Irix. 
    25 
    36        * configure.in, cherokee/util.c: Added a new entry to support IRIX 
  • cherokee/trunk/admin/CherokeeManagement.py

    r1577 r1696  
    181181def is_PID_alive (pid): 
    182182    if sys.platform.startswith('linux') or \ 
    183        sys.platform.startswith('sunos'): 
     183       sys.platform.startswith('sunos') or \ 
     184       sys.platform.startswith('irix'): 
    184185        return os.path.exists('/proc/%s'%(pid)) 
    185186