Changeset 10263 in vbox for trunk/src/VBox/HostDrivers/Support/freebsd
- Timestamp:
- Jul 5, 2008 12:26:17 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32868
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r10254 r10263 45 45 #include <sys/uio.h> 46 46 47 #include " SUPDrvInternal.h"47 #include "../SUPDrvInternal.h" 48 48 #include <VBox/version.h> 49 49 #include <iprt/initterm.h> … … 514 514 515 515 516 /** 517 * The SUPDRV IDC entry point. 518 * 519 * @returns VBox status code, see supdrvIDC. 520 * @param iReq The request code. 521 * @param pReq The request. 522 */ 523 int VBOXCALL SUPDrvFreeBSDIDC(uint32_t uReq, PSUPDRVIDCREQHDR pReq) 524 { 525 PSUPDRVSESSION pSession; 526 527 /* 528 * Some quick validations. 529 */ 530 if (RT_UNLIKELY(!VALID_PTR(pReq))) 531 return VERR_INVALID_POINTER; 532 533 pSession = pReq->pSession; 534 if (pSession) 535 { 536 if (RT_UNLIKELY(!VALID_PTR(pReq->pSession))) 537 return VERR_INVALID_PARAMETER; 538 if (RT_UNLIKELY(pSession->pDevExt != &g_VBoxDrvFreeBSDModule)) 539 return VERR_INVALID_PARAMETER; 540 } 541 else if (RT_UNLIKELY(uReq != SUPDRV_IDC_REQ_CONNECT)) 542 return VERR_INVALID_PARAMETER; 543 544 /* 545 * Do the job. 546 */ 547 return supdrvIDC(uReq, &g_VBoxDrvFreeBSDModule, pSession, pReq); 548 } 549 516 550 517 551 void VBOXCALL supdrvOSObjInitCreator(PSUPDRVOBJ pObj, PSUPDRVSESSION pSession)
Note:
See TracChangeset
for help on using the changeset viewer.