Changeset 6154 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Dec 19, 2007 3:24:56 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r6151 r6154 525 525 pState->pSession = pSession; 526 526 *pDev = makedevice(getmajor(*pDev), iOpenInstance); 527 Log((DEVICE_NAME "VBoxAddSolarisOpen: pSession=%p pState=%p \n", pSession, pState));527 Log((DEVICE_NAME "VBoxAddSolarisOpen: pSession=%p pState=%p pid=%d\n", pSession, pState, (int)RTProcSelf())); 528 528 return 0; 529 529 } … … 614 614 if (!pSession) 615 615 { 616 Log((DEVICE_NAME ":VBox GuestIoctl: WHUT?!? pSession == NULL! This must be a mistake... pid=%d", (int)Process));616 Log((DEVICE_NAME ":VBoxAddSolarisClose: WHUT?!? pSession == NULL! This must be a mistake... pid=%d", (int)Process)); 617 617 return EFAULT; 618 618 } 619 Log((DEVICE_NAME ":VBoxAddSolarisClose: pid=%d\n", (int)Process)); 619 620 #else 620 621 PVBOXGUESTSESSION pSession; … … 628 629 pSession = pState->pSession; 629 630 pState->pSession = NULL; 631 Log((DEVICE_NAME ":VBoxAddSolarisClose: pSession=%p pState=%p\n", pSession, pState)); 630 632 ddi_soft_state_free(g_pVBoxAddSolarisState, getminor(Dev)); 631 633 if (!pSession) … … 812 814 Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: pvBuf invalid pointer %p\n", pvBuf)); 813 815 } 816 Log((DEVICE_NAME ":VBoxAddSolarisIOCtl: pSession=%p pid=%d.\n", pSession, (int)RTProcSelf())); 814 817 815 818 size_t cbDataReturned;
Note:
See TracChangeset
for help on using the changeset viewer.