Changeset 69046 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Oct 11, 2017 4:11:23 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118325
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrvGip.cpp
r64290 r69046 4191 4191 if (RT_FAILURE(rc)) 4192 4192 return supdrvTscDeltaThreadButchered(pDevExt, true /* fSpinlockHeld */, "RTSemEventSignal", rc); 4193 /* fall thru */4193 RT_FALL_THRU(); 4194 4194 } 4195 4195 … … 4220 4220 RTSpinlockRelease(pDevExt->hTscDeltaSpinlock); 4221 4221 RTThreadSleep(1); 4222 /* fall thru */4222 RT_FALL_THRU(); 4223 4223 } 4224 4224 -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r66858 r69046 1042 1042 case 'X': 1043 1043 fFlags |= RTSTR_F_CAPITAL; 1044 /* fall thru */1044 RT_FALL_THRU(); 1045 1045 case 'x': 1046 1046 uBase = 16; … … 1083 1083 break; 1084 1084 } 1085 /* fall thru */1085 RT_FALL_THRU(); 1086 1086 1087 1087 /* -
trunk/src/VBox/HostDrivers/Support/SUPSvcGrant.cpp
r62490 r69046 495 495 if (RT_FAILURE(rc)) 496 496 return supSvcGrantThreadButchered(pThis, true /* fOwnCritSect*/, "RTSemEventSignal", rc); 497 /* fall thru */497 RT_FALL_THRU(); 498 498 499 499 case kSupSvcGrantState_Paused: … … 510 510 if (RT_FAILURE(rc)) 511 511 return supSvcGrantThreadButchered(pThis, true /* fOwnCritSect*/, "RTSemEventSignal", rc); 512 /* fall thru */512 RT_FALL_THRU(); 513 513 514 514 case kSupSvcGrantState_Listen:
Note:
See TracChangeset
for help on using the changeset viewer.