Changeset 53672 in vbox
- Timestamp:
- Jan 2, 2015 12:34:03 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97449
- Location:
- trunk/src/VBox/ExtPacks/VBoxDTrace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ExtPacks/VBoxDTrace/VBoxDTraceR0/VBoxDTraceR0.cpp
r53670 r53672 1015 1015 uint32_t iRet = (uint32_t)iBit + pChunk->iFirst + pThis->uBase; 1016 1016 RTSpinlockRelease(pThis->hSpinlock, &Tmp); 1017 SUPR0Printf("returning iRet=%u\n", iRet); 1017 1018 return (void *)(uintptr_t)iRet; 1018 1019 } … … 1023 1024 /* Out of resources? */ 1024 1025 if (cChunks >= pThis->cMaxChunks) 1026 { 1027 SUPR0Printf("cChunks=%u cMaxChunks=%u!!\n", cChunks, pThis->cMaxChunks); 1025 1028 break; 1029 } 1026 1030 1027 1031 /* … … 1038 1042 pChunk = (PVBOXDTVMEMCHUNK)RTMemAllocZ(sizeof(*pChunk)); 1039 1043 if (!pChunk) 1044 { 1045 SUPR0Printf("returning NULL!!\n"); 1040 1046 return NULL; 1041 1047 } 1048 1049 SUPR0Printf("Adding chunk %p at bit %u, covering %u bits\n", pChunk, iFirstBit, cFreeBits); 1042 1050 pChunk->iFirst = iFirstBit; 1043 1051 pChunk->cCurFree = cFreeBits; … … 1074 1082 RTSpinlockRelease(pThis->hSpinlock, &Tmp); 1075 1083 1084 SUPR0Printf("returning NULL!\n"); 1076 1085 return NULL; 1077 1086 } -
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/uts/common/dtrace/dtrace.c
r53670 r53672 7579 7579 VM_BESTFIT | VM_SLEEP); 7580 7580 probe = kmem_zalloc(sizeof (dtrace_probe_t), KM_SLEEP); 7581 SUPR0Printf("dtrace_probe_create: %s id=%u %p\n", name, id, probe); 7581 7582 7582 7583 probe->dtpr_id = id; … … 7626 7627 } 7627 7628 7629 SUPR0Printf("dtrace_probe_create: dtrace_nprobes=%u\n", dtrace_nprobes); 7628 7630 ASSERT(id - 1 < dtrace_nprobes); 7629 7631 }
Note:
See TracChangeset
for help on using the changeset viewer.