Changeset 79908 in vbox for trunk/src/VBox/ValidationKit/common
- Timestamp:
- Jul 20, 2019 3:56:15 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132316
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/utils.py ¶
r79279 r79908 1352 1352 return time.time(); 1353 1353 1354 1355 1354 def timestampNano(): 1356 1355 """ … … 1376 1375 return long(_winFloatTime()); 1377 1376 return long(time.time()); 1377 1378 def secondsSinceUnixEpoch(): 1379 """ 1380 Returns unix time, floating point second count since 1970-01-01T00:00:00Z 1381 """ 1382 ## ASSUMES This returns unix epoch time on all systems we care about... 1383 return time.time(); 1378 1384 1379 1385 def getTimePrefix():
Note:
See TracChangeset
for help on using the changeset viewer.