Changeset 53673 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts
- Timestamp:
- Jan 2, 2015 12:34:08 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/dtrace.c
r53672 r53673 95 95 #else /* VBOX */ 96 96 # include <sys/dtrace_impl.h> 97 # include <VBox/sup.h> 97 98 # include <iprt/assert.h> 98 99 # include <iprt/cpuset.h> … … 14807 14808 dtrace_enabling_t *enab; 14808 14809 14809 #if ndef VBOX14810 #ifdef VBOX 14810 14811 if ( VBoxDtMutexInit(&dtrace_lock) 14811 14812 || VBoxDtMutexInit(&dtrace_provider_lock) 14812 14813 || VBoxDtMutexInit(&dtrace_meta_lock) 14813 14814 # ifdef DEBUG 14814 || VBoxDtMutexInit(&dtrace_errlock) ;14815 || VBoxDtMutexInit(&dtrace_errlock) 14815 14816 # endif 14816 14817 ) … … 16072 16073 mutex_exit(&dtrace_lock); 16073 16074 mutex_exit(&dtrace_provider_lock); 16075 #ifdef VBOX 16076 VBoxDtMutexDelete(&dtrace_lock); 16077 VBoxDtMutexDelete(&dtrace_provider_lock); 16078 VBoxDtMutexDelete(&dtrace_meta_lock); 16079 # ifdef DEBUG 16080 VBoxDtMutexDelete(&dtrace_errlock); 16081 # endif 16082 #endif 16074 16083 16075 16084 /*
Note:
See TracChangeset
for help on using the changeset viewer.