Changeset 103141 in vbox
- Timestamp:
- Jan 31, 2024 3:03:29 PM (10 months ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/alloc-ef.h
r100313 r103141 70 70 * encounter this, please fix the allocation to RTMemAllocVar or RTMemAllocZVar. 71 71 */ 72 #if 072 #if defined(RT_ARCH_ARM64) 73 73 # define RTALLOC_EFENCE_ALIGNMENT (ARCH_BITS / 8) 74 74 #else -
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r98103 r103141 81 81 * This function is a crude approximation of pthread_mutex_timedlock. 82 82 */ 83 int rtSemFallbackPthreadMutexTimedlock(pthread_mutex_t *mutex, RTMSINTERVAL cMillies)83 static int rtSemFallbackPthreadMutexTimedlock(pthread_mutex_t *mutex, RTMSINTERVAL cMillies) 84 84 { 85 85 struct timespec ts; -
trunk/src/VBox/Runtime/testcase/tstRTArmv8.cpp
r101613 r103141 54 54 55 55 56 const char *tobin(uint64_t uValue, unsigned cchWidth, char *pszBuf)56 static const char *tobin(uint64_t uValue, unsigned cchWidth, char *pszBuf) 57 57 { 58 58 char *psz = pszBuf; … … 115 115 116 116 117 void tstLogicalMask32(void)117 static void tstLogicalMask32(void) 118 118 { 119 119 RTTestISub("32-bit logical masks"); … … 194 194 195 195 196 void tstLogicalMask64(void)196 static void tstLogicalMask64(void) 197 197 { 198 198 RTTestISub("64-bit logical masks"); -
trunk/src/VBox/Runtime/testcase/tstRTFsQueries.cpp
r102647 r103141 52 52 } TestCtx = { 42, VINF_SUCCESS }; 53 53 54 DECLCALLBACK(int) mountpointsEnumCallback(const char *pszMountpoint, void *pvUser)54 static DECLCALLBACK(int) mountpointsEnumCallback(const char *pszMountpoint, void *pvUser) 55 55 { 56 56 TSTCTX *pCtx = (TSTCTX *)pvUser;
Note:
See TracChangeset
for help on using the changeset viewer.