Changeset 92882 in vbox
- Timestamp:
- Dec 13, 2021 1:34:57 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148833
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/utils.py
r86919 r92882 1141 1141 sProc = '/proc/%s/' % (self.iPid,); 1142 1142 if self.sImage is None: self.sImage = noxcptReadLink(sProc + 'exe', None); 1143 if self.sImage is None: 1144 self.sImage = noxcptReadFile(sProc + 'comm', None); 1145 if self.sImage: self.sImage = self.sImage.strip(); 1143 1146 if self.sCwd is None: self.sCwd = noxcptReadLink(sProc + 'cwd', None); 1144 1147 if self.asArgs is None: self.asArgs = noxcptReadFile(sProc + 'cmdline', '').split('\x00');
Note:
See TracChangeset
for help on using the changeset viewer.