Changeset 81649 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Nov 4, 2019 12:10:50 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134407
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/ntfsvfs.cpp
r80585 r81649 1053 1053 case 3: cClustersInRun |= (uint32_t)pbPairs[offPairs + 2] << 16; RT_FALL_THRU(); 1054 1054 case 2: cClustersInRun |= (uint16_t)pbPairs[offPairs + 1] << 8; RT_FALL_THRU(); 1055 case 1: cClustersInRun |= (uint16_t)pbPairs[offPairs + 0] << 0; RT_FALL_THRU();1055 case 1: cClustersInRun |= (uint16_t)pbPairs[offPairs + 0] << 0; 1056 1056 } 1057 1057 offPairs += cbRunField; -
trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c
r76553 r81649 37 37 #include "internal/thread.h" 38 38 39 #if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0) 40 #include <uapi/linux/sched/types.h> 41 #endif /* >= KERNEL_VERSION(4, 11, 0) */ 39 42 40 43 RTDECL(RTTHREAD) RTThreadSelf(void)
Note:
See TracChangeset
for help on using the changeset viewer.