VirtualBox

Ignore:
Timestamp:
Jul 5, 2008 12:26:17 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
32868
Message:

Inter-Driver Communication (IDC) interface for the support driver. The OS specific bits in SUPDrv.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c

    r10254 r10263  
    4545#include <sys/uio.h>
    4646
    47 #include "SUPDrvInternal.h"
     47#include "../SUPDrvInternal.h"
    4848#include <VBox/version.h>
    4949#include <iprt/initterm.h>
     
    514514
    515515
     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 */
     523int 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
    516550
    517551void VBOXCALL   supdrvOSObjInitCreator(PSUPDRVOBJ pObj, PSUPDRVSESSION pSession)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette