Esempio n. 1
0
 def create_time(self):
     # special case for kernel process PIDs; return system boot time
     if self.pid in (0, 4):
         return boot_time()
     try:
         return cext.proc_create_time(self.pid)
     except OSError as err:
         if err.errno in ACCESS_DENIED_SET:
             return cext.proc_create_time_2(self.pid)
         raise
Esempio n. 2
0
 def create_time(self):
     # special case for kernel process PIDs; return system boot time
     if self.pid in (0, 4):
         return boot_time()
     try:
         return cext.proc_create_time(self.pid)
     except OSError as err:
         if err.errno in ACCESS_DENIED_SET:
             return cext.proc_create_time_2(self.pid)
         raise