Changeset 92890 in vbox for trunk/src/VBox
- Timestamp:
- Dec 14, 2021 8:53:32 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/base.py
r86513 r92890 265 265 Returns True if it positively exists, False otherwise. 266 266 """ 267 if sys.platform == 'win32': 268 fRc = winbase.processExists(uPid); 269 else: 270 try: 271 os.kill(uPid, 0); 272 fRc = True; 273 except: 274 reporter.logXcpt('uPid=%s' % (uPid,)); 275 fRc = False; 276 return fRc; 267 return utils.processExists(uPid); 277 268 278 269 def processCheckPidAndName(uPid, sName):
Note:
See TracChangeset
for help on using the changeset viewer.