Changeset 14836 in vbox for trunk/src/VBox
- Timestamp:
- Nov 30, 2008 8:51:20 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r14825 r14836 2538 2538 */ 2539 2539 AssertReturn(SUP_IS_SESSION_VALID(pSession), VERR_INVALID_PARAMETER); 2540 SUPR0Printf("SUPR0PageMapKernel: 1\n");2541 2540 AssertPtrNullReturn(ppvR0, VERR_INVALID_POINTER); 2542 2541 AssertReturn(!fFlags, VERR_INVALID_PARAMETER); 2543 SUPR0Printf("SUPR0PageMapKernel: 2\n");2544 2542 AssertReturn(!(offSub & PAGE_OFFSET_MASK), VERR_INVALID_PARAMETER); 2545 SUPR0Printf("SUPR0PageMapKernel: 3\n");2546 2543 AssertReturn(!(cbSub & PAGE_OFFSET_MASK), VERR_INVALID_PARAMETER); 2547 SUPR0Printf("SUPR0PageMapKernel: 4\n");2548 2544 AssertReturn(cbSub, VERR_INVALID_PARAMETER); 2549 SUPR0Printf("SUPR0PageMapKernel: 5 - ok\n");2550 2545 2551 2546 /* … … 2576 2571 } 2577 2572 RTSpinlockRelease(pSession->Spinlock, &SpinlockTmp); 2578 SUPR0Printf("SUPR0PageMapKernel: hMemObj=%p\n", hMemObj);2579 2573 2580 2574 rc = VERR_INVALID_PARAMETER; … … 2591 2585 { 2592 2586 RTR0MEMOBJ hMapObj; 2593 SUPR0Printf("RTR0MemObjMapKernelEx: hMemObj=%p\n", hMemObj);2594 2587 rc = RTR0MemObjMapKernelEx(&hMapObj, hMemObj, (void *)-1, 0, 2595 2588 RTMEM_PROT_READ | RTMEM_PROT_WRITE, offSub, cbSub); -
trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
r14824 r14836 550 550 int rc = VERR_INVALID_PARAMETER; 551 551 PRTR0MEMOBJDARWIN pMemToMapDarwin = (PRTR0MEMOBJDARWIN)pMemToMap; 552 printf("rtR0MemObjNativeMapKernel: pMemDesc=%p\n", pMemToMapDarwin->pMemDesc);553 552 if (pMemToMapDarwin->pMemDesc) 554 553 {
Note:
See TracChangeset
for help on using the changeset viewer.