Changeset 53974 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/include
- Timestamp:
- Jan 27, 2015 5:50:17 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97876
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/include/VBoxDTraceLibCWrappers.h
r53716 r53974 29 29 #else 30 30 # include <sys/types.h> 31 # include <limits.h> /* Workaround for syslimit.h bug in gcc 4.8.3 on gentoo. */ 31 32 # include <syslimits.h> /* PATH_MAX */ 32 33 # include <libgen.h> /* basename */ -
trunk/src/VBox/ExtPacks/VBoxDTrace/include/VBoxDTraceTypes.h
r53716 r53974 24 24 #include <iprt/types.h> 25 25 #include <iprt/stdarg.h> 26 #include <iprt/assert.h> 26 27 #include <iprt/param.h> 27 28 #include <iprt/errno.h> … … 32 33 # include <sys/types.h> 33 34 # include <limits.h> 35 # ifdef RT_OS_LINUX 36 # include <sys/ucontext.h> /* avoid greg_t trouble */ 37 # endif 34 38 # if defined(_MSC_VER) 35 39 # include <stdio.h> … … 48 52 typedef uint64_t u_longlong_t; 49 53 typedef uint64_t hrtime_t; 54 #if !defined(NGREG) || !defined(RT_OS_LINUX) 50 55 typedef RTCCINTREG greg_t; 56 #else 57 AssertCompileSize(greg_t, sizeof(RTCCINTREG)); 58 #endif 51 59 typedef uintptr_t pc_t; 52 60 typedef uint32_t id_t;
Note:
See TracChangeset
for help on using the changeset viewer.