Changeset 25465 in vbox for trunk/src/VBox/HostDrivers/Support/os2
- Timestamp:
- Dec 17, 2009 2:49:34 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56131
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r25278 r25465 91 91 DECLASM(int) VBoxDrvInit(const char *pszArgs) 92 92 { 93 dprintf(("VBoxDrvInit: pszArgs=%s\n", pszArgs));94 95 93 /* 96 94 * Initialize the runtime. … … 99 97 if (RT_SUCCESS(rc)) 100 98 { 99 Log(("VBoxDrvInit: pszArgs=%s\n", pszArgs)); 100 101 101 /* 102 102 * Initialize the device extension. … … 167 167 } 168 168 169 dprintf(("VBoxDrvOpen: g_DevExt=%p pSession=%p rc=%d pid=%d\n", &g_DevExt, pSession, rc, (int)RTProcSelf()));169 Log(("VBoxDrvOpen: g_DevExt=%p pSession=%p rc=%d pid=%d\n", &g_DevExt, pSession, rc, (int)RTProcSelf())); 170 170 return rc; 171 171 } … … 174 174 DECLASM(int) VBoxDrvClose(uint16_t sfn) 175 175 { 176 dprintf(("VBoxDrvClose: pid=%d sfn=%d\n", (int)RTProcSelf(), sfn));176 Log(("VBoxDrvClose: pid=%d sfn=%d\n", (int)RTProcSelf(), sfn)); 177 177 178 178 /* … … 294 294 if (RT_LIKELY(iCat == SUP_CTL_CATEGORY)) 295 295 { 296 dprintf(("VBoxDrvIOCtl: pSession=%p iFunction=%#x pvParm=%p pvData=%p *pcbParm=%d *pcbData=%d\n", pSession, iFunction, pvParm, pvData, *pcbParm, *pcbData));296 Log(("VBoxDrvIOCtl: pSession=%p iFunction=%#x pvParm=%p pvData=%p *pcbParm=%d *pcbData=%d\n", pSession, iFunction, pvParm, pvData, *pcbParm, *pcbData)); 297 297 Assert(pvParm); 298 298 Assert(!pvData); … … 352 352 AssertMsg(!rc2, ("rc2=%d\n", rc2)); NOREF(rc2); 353 353 354 dprintf2(("VBoxDrvIOCtl: returns %d\n", rc));354 Log2(("VBoxDrvIOCtl: returns %d\n", rc)); 355 355 return rc; 356 356 }
Note:
See TracChangeset
for help on using the changeset viewer.