예제 #1
0
파일: _psbsd.py 프로젝트: 2089764/psutil
 def uids(self):
     real, effective, saved = cext.proc_uids(self.pid)
     return _common.puids(real, effective, saved)
예제 #2
0
 def uids(self):
     real, effective, saved = cext.proc_uids(self.pid)
     return _common.puids(real, effective, saved)
예제 #3
0
파일: _psbsd.py 프로젝트: ztop/psutil
 def uids(self):
     """Return real, effective and saved user ids."""
     real, effective, saved = cext.proc_uids(self.pid)
     return _common.puids(real, effective, saved)