コード例 #1
0
ファイル: _pssunos.py プロジェクト: ztop/psutil
 def cmdline(self):
     return cext.proc_name_and_args(self.pid)[1].split(' ')
コード例 #2
0
 def cmdline(self):
     return cext.proc_name_and_args(self.pid)[1].split(' ')
コード例 #3
0
ファイル: _pssunos.py プロジェクト: ztop/psutil
 def name(self):
     # note: max len == 15
     return cext.proc_name_and_args(self.pid)[0]
コード例 #4
0
 def name(self):
     # note: max len == 15
     return cext.proc_name_and_args(self.pid)[0]