Changeset 53677 in vbox for trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts
- Timestamp:
- Jan 2, 2015 12:34:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/dtrace.c
r53675 r53677 14872 14872 14873 14873 ASSERT(MUTEX_HELD(&cpu_lock)); 14874 SUPR0Printf("dtrace_attach: IF=%RTbool #1\n", ASMIntAreEnabled()); 14874 14875 14875 14876 #ifndef VBOX /* Reduce the area a bit just to be sure our vmem fake doesn't blow up. */ … … 14880 14881 NULL, NULL, NULL, 0, VM_SLEEP | VMC_IDENTIFIER); 14881 14882 #endif 14883 SUPR0Printf("dtrace_attach: IF=%RTbool #2\n", ASMIntAreEnabled()); 14882 14884 #ifndef VBOX 14883 14885 dtrace_minor = vmem_create("dtrace_minor", (void *)DTRACEMNRN_CLONE, … … 14893 14895 14894 14896 ASSERT(MUTEX_HELD(&cpu_lock)); 14897 SUPR0Printf("dtrace_attach: IF=%RTbool #3\n", ASMIntAreEnabled()); 14895 14898 dtrace_bymod = dtrace_hash_create(offsetof(dtrace_probe_t, dtpr_mod), 14896 14899 offsetof(dtrace_probe_t, dtpr_nextmod), 14897 14900 offsetof(dtrace_probe_t, dtpr_prevmod)); 14901 SUPR0Printf("dtrace_attach: IF=%RTbool #4\n", ASMIntAreEnabled()); 14898 14902 14899 14903 dtrace_byfunc = dtrace_hash_create(offsetof(dtrace_probe_t, dtpr_func), … … 14923 14927 * pseudo provider. 14924 14928 */ 14929 SUPR0Printf("dtrace_attach: IF=%RTbool #5\n", ASMIntAreEnabled()); 14925 14930 (void) dtrace_register("dtrace", &dtrace_provider_attr, 14926 14931 DTRACE_PRIV_NONE, 0, &dtrace_provider_ops, NULL, &id); 14932 SUPR0Printf("dtrace_attach: IF=%RTbool #6\n", ASMIntAreEnabled()); 14927 14933 14928 14934 ASSERT(dtrace_provider != NULL); … … 14931 14937 dtrace_probeid_begin = dtrace_probe_create((dtrace_provider_id_t) 14932 14938 dtrace_provider, NULL, NULL, "BEGIN", 0, NULL); 14939 SUPR0Printf("dtrace_attach: IF=%RTbool #7\n", ASMIntAreEnabled()); 14933 14940 dtrace_probeid_end = dtrace_probe_create((dtrace_provider_id_t) 14934 14941 dtrace_provider, NULL, NULL, "END", 0, NULL); … … 14940 14947 #endif 14941 14948 mutex_exit(&cpu_lock); 14949 SUPR0Printf("dtrace_attach: IF=%RTbool #8\n", ASMIntAreEnabled()); 14942 14950 14943 14951 /*
Note:
See TracChangeset
for help on using the changeset viewer.