Browse code

Add parent id to worlddump output

Helpful in tracking down some process-doesn't-die problems.

Change-Id: I146910403879c9a85d644bd07a53830ea17ca77d

Dean Troyer authored on 2015/03/29 03:37:26
Showing 1 changed files
... ...
@@ -66,7 +66,7 @@ def process_list():
66 66
 Process Listing
67 67
 ===============
68 68
 """
69
-    psraw = os.popen("ps auxw").read()
69
+    psraw = os.popen("ps axo user,ppid,pid,pcpu,pmem,vsz,rss,tty,stat,start,time,args").read()
70 70
     print psraw
71 71
 
72 72