- Timestamp:
- Jan 2, 2015 12:32:39 PM (10 years ago)
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0/VBoxDTraceR0A.asm
r53645 r53665 39 39 40 40 GLOBALNAME dtrace_probe6 41 jmp dtrace_probe41 jmp NAME(dtrace_probe) 42 42 43 43 -
trunk/src/VBox/ExtPacks/VBoxDTrace/include/VBoxDTraceTypes.h
r53664 r53665 70 70 #undef PATH_MAX 71 71 #define PATH_MAX RTPATH_MAX 72 #undef NBBY 72 73 #define NBBY (8) 73 74 #define NCPU RTCPUSET_MAX_CPUS -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_cc.c
r53655 r53665 101 101 # ifdef _MSC_VER 102 102 # include <io.h> 103 # define ftruncate64 _chsize104 # define lseek64 lseek105 103 # else 106 104 # include <unistd.h> 105 # endif 106 # if defined(RT_OS_WINDOWS) || defined(RT_OS_DARWIN) 107 # ifdef _MSC_VER 108 # define ftruncate64 _chsize 109 # else 110 # define ftruncate64 ftruncate 111 # endif 112 # define lseek64 lseek 107 113 # endif 108 114 #endif /* VBOX */ -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_options.c
r53653 r53665 46 46 # include <unistd.h> 47 47 # include <signal.h> 48 # if defined(RT_OS_DARWIN) 49 # define open64 open 50 # endif 48 51 # else 49 52 # include <io.h> -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/dtrace.c
r53664 r53665 8780 8780 dtrace_difo_chunksize(dtrace_difo_t *dp, dtrace_vstate_t *vstate) 8781 8781 { 8782 uint64_t sval ;8782 uint64_t sval VBDTGCC(0); 8783 8783 dtrace_key_t tupregs[DIF_DTR_NREGS + 2]; /* +2 for thread and id */ 8784 8784 const dif_instr_t *text = dp->dtdo_buf; … … 8794 8794 uint_t r1 = DIF_INSTR_R1(instr); 8795 8795 uint_t nkeys = 0; 8796 uchar_t scope ;8796 uchar_t scope VBDTGCC(0); 8797 8797 8798 8798 dtrace_key_t *key = tupregs;
Note:
See TracChangeset
for help on using the changeset viewer.