Add pid_get_cwd support for SunOS. Patch from Lewis Thompson. Closes LP #381610.

This commit is contained in:
Chris Jones 2009-05-29 16:34:48 +02:00
parent 224fddedbd
commit 2cd90552f9
1 changed files with 3 additions and 0 deletions

View File

@ -270,6 +270,9 @@ class Terminator:
elif platform.system() == 'Linux':
dbg ('Using Linux self.pid_get_cwd')
self.pid_get_cwd = lambda pid: os.path.realpath ('/proc/%s/cwd' % pid)
elif platform.system() == 'SunOS':
dbg ('Using SunOS self.pid_get_cwd')
self.pid_get_cwd = lambda pid: os.path.realpath ('/proc/%s/path/cwd' % pid)
else:
dbg ('Unable to set a self.pid_get_cwd, unknown system: %s' % platform.system)