Changeset 53716 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv
- Timestamp:
- Jan 2, 2015 2:19:28 PM (10 years ago)
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace/onnv
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/dtrace.c
r53653 r53716 69 69 # include <iprt/string.h> 70 70 71 # undef PATH_MAX 72 # define PATH_MAX RTPATH_MAX 73 74 # define getpid RTProcSelf 75 # define basename(a_pszPath) RTPathFilename(a_pszPath) 71 # include "VBoxDTraceLibCWrappers.h" 76 72 77 73 # ifdef _MSC_VER -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/ctf_impl.h
r53657 r53716 39 39 # include "../../../../../Runtime/include/internal/ldrELF64.h" 40 40 # include <errno.h> 41 # include "VBoxDTraceLibCWrappers.h" 41 42 #endif /* VBOX */ 42 43 #include <sys/ctf_api.h> -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_grammar.y
r53654 r53716 36 36 #define LINK(l, r) dt_node_link(l, r) 37 37 #define DUP(s) strdup(s) 38 39 #ifdef VBOX 40 # define YYMALLOC RTMemAlloc 41 # define YYFREE RTMemFree 42 #endif 43 38 44 39 45 %} -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_impl.h
r53664 r53716 41 41 # include <dtrace.h> 42 42 # include <errno.h> 43 # include "VBoxDTraceLibCWrappers.h" 43 44 #endif /* VBOX*/ 44 45 -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_list.c
r53653 r53716 41 41 #include <unistd.h> 42 42 #include <assert.h> 43 #else 44 # include "VBoxDTraceLibCWrappers.h" 43 45 #endif 44 46 #include <dt_list.h> -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_regset.c
r53653 r53716 35 35 #else /* VBOX */ 36 36 # include <iprt/asm.h> 37 # include "VBoxDTraceLibCWrappers.h" 37 38 #endif /* VBOX */ 38 39
Note:
See TracChangeset
for help on using the changeset viewer.