summaryrefslogtreecommitdiff
path: root/psutil/_pswindows.py
diff options
context:
space:
mode:
Diffstat (limited to 'psutil/_pswindows.py')
-rw-r--r--psutil/_pswindows.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/psutil/_pswindows.py b/psutil/_pswindows.py
index c2cdbb85..d8abf2e6 100644
--- a/psutil/_pswindows.py
+++ b/psutil/_pswindows.py
@@ -928,9 +928,6 @@ class Process(object):
@wrap_exceptions
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: