Changeset 56222 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Jun 3, 2015 1:58:13 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100769
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/time-linux.cpp
r52822 r56222 82 82 case -1: 83 83 { 84 int rc;85 84 #ifdef CLOCK_MONOTONIC 86 85 /* 87 86 * Real-Time API. 88 87 */ 89 rc = clock_gettime(CLOCK_MONOTONIC, ts);88 int rc = clock_gettime(CLOCK_MONOTONIC, ts); 90 89 if (!rc) 91 90 { -
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r48935 r56222 391 391 case RTHANDLESTD_OUTPUT: fd = 1; break; 392 392 case RTHANDLESTD_ERROR: fd = 2; break; 393 break;394 393 default: 395 394 AssertFailedReturn(NIL_RTFILE);
Note:
See TracChangeset
for help on using the changeset viewer.