aboutsummaryrefslogtreecommitdiff
path: root/process.py
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-04-14 15:52:38 +0200
committerToni Uhlig <matzeton@googlemail.com>2020-04-14 15:52:38 +0200
commitfe76b41145bc7ad14f103fd412a3ff6baee0e417 (patch)
tree111b5e8c398f76b4a50dee6189830d102bcd0e4c /process.py
parent8013b1b037fc05230773b2de20f10e395f9b7f6b (diff)
README, process,py update
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'process.py')
-rwxr-xr-xprocess.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/process.py b/process.py
index effcbbc..f8873e7 100755
--- a/process.py
+++ b/process.py
@@ -5,6 +5,7 @@ import os
start_pids = [pid for pid in os.listdir('/proc') if pid.isdigit()]
print 'PIDs', str(start_pids)
+# we don't do an active sleep here, results in slightly increasing usage for one of your CPU cores
while True:
cur_pids = [pid for pid in os.listdir('/proc') if pid.isdigit()]
for pid in cur_pids: