Changeset 106497 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 19, 2024 3:11:08 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 165329
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/nt/direnum-r3-nt.cpp
r106061 r106497 712 712 default: 713 713 AssertFailed(); 714 RT_FALL_THRU(); 714 715 case 0: 715 716 pDirEntry->enmType = RTDIRENTRYTYPE_FILE; -
trunk/src/VBox/Runtime/r3/stream.cpp
r106061 r106497 1684 1684 default: 1685 1685 AssertFailed(); 1686 RT_FALL_THROUGH(); 1686 1687 case RTSTREAMBUFDIR_NONE: 1687 1688 break; -
trunk/src/VBox/Runtime/r3/win/RTSystemQueryOSInfo-win.cpp
r106061 r106497 250 250 default: 251 251 AssertFailed(); 252 RT_FALL_THROUGH(); 252 253 case kRTWinOSType_UNKNOWN: 253 254 RTStrPrintf(szTmp, sizeof(szTmp), "Unknown %d v%u.%u", -
trunk/src/VBox/Runtime/r3/win/semmutex-win.cpp
r106061 r106497 256 256 default: 257 257 AssertMsgFailed(("%u\n", rc)); 258 RT_FALL_THRU(); 258 259 case WAIT_FAILED: 259 260 { -
trunk/src/VBox/Runtime/r3/win/timer-win.cpp
r106061 r106497 405 405 if (!pTimer->fSuspended) 406 406 { 407 LARGE_INTEGER ll = { 0};407 LARGE_INTEGER ll = {{0,0}}; 408 408 ll.LowPart = 100; 409 409 rc = SetWaitableTimer(pTimer->hTimer, &ll, 0, NULL, NULL, FALSE); … … 499 499 if (RTThreadSelf() != pTimer->Thread) 500 500 { 501 LARGE_INTEGER ll = { 0};501 LARGE_INTEGER ll = {{0,0}}; 502 502 ll.LowPart = 100; 503 503 rc = SetWaitableTimer(pTimer->hTimer, &ll, 0, NULL, NULL, FALSE);
Note:
See TracChangeset
for help on using the changeset viewer.