Changeset 1696
- Timestamp:
- 07/28/08 10:34:53 (5 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/admin/CherokeeManagement.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1695 r1696 1 1 2008-07-28 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * admin/CherokeeManagement.py (is_PID_alive): Added a new case to 4 support Irix. 2 5 3 6 * configure.in, cherokee/util.c: Added a new entry to support IRIX cherokee/trunk/admin/CherokeeManagement.py
r1577 r1696 181 181 def is_PID_alive (pid): 182 182 if sys.platform.startswith('linux') or \ 183 sys.platform.startswith('sunos'): 183 sys.platform.startswith('sunos') or \ 184 sys.platform.startswith('irix'): 184 185 return os.path.exists('/proc/%s'%(pid)) 185 186