- Timestamp:
- Jan 2, 2015 12:42:04 PM (10 years ago)
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0/VBoxDTraceR0.cpp
r53692 r53693 1388 1388 return; 1389 1389 1390 if (pProv->TracerData.DTrace.cProvidedProbes >= pProbeLocEnd - pProbeLoc)1390 if (pProv->TracerData.DTrace.cProvidedProbes >= (uintptr_t)(pProbeLocEnd - pProbeLoc)) 1391 1391 return; 1392 1392 -
trunk/src/VBox/ExtPacks/VBoxDTrace/include/VBoxDTraceTypes.h
r53687 r53693 136 136 # define bcmp(a_p1, a_p2, a_cb) memcmp(a_p1, a_p2, a_cb) 137 137 # define snprintf RTStrPrintf 138 # define vsnprintf RTStrPrintfV 138 139 #endif 139 140 … … 446 447 #define GELF_ST_BIND ELF64_ST_BIND 447 448 449 /* 450 * MSC stuff. 451 */ 452 # ifdef _MSC_VER 453 # ifndef SIZE_MAX 454 # if ARCH_BITS == 32 455 # define SIZE_MAX UINT32_MAX 456 # else 457 # define SIZE_MAX UINT64_MAX 458 # endif 459 # endif 460 # endif /* _MSC_VER */ 461 448 462 #endif /* IN_RING3 */ 449 463
Note:
See TracChangeset
for help on using the changeset viewer.