VirtualBox

Changeset 12808 in vbox for trunk/src


Ignore:
Timestamp:
Sep 29, 2008 3:19:15 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37160
Message:

SUPDrv: shared the symbol table dragging in symbols into the link on darwin and solaris.

Location:
trunk/src/VBox/HostDrivers/Support
Files:
3 edited

Legend:

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

    r12492 r12808  
    4747#include <VBox/log.h>
    4848#include <VBox/err.h>
     49#if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS)
     50# include <iprt/crc32.h>
     51# include <iprt/net.h>
     52#endif
    4953/* VBox/x86.h not compatible with the Linux kernel sources */
    5054#ifdef RT_OS_LINUX
     
    389393};
    390394
     395#if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS)
     396/**
     397 * Drag in the rest of IRPT since we share it with the
     398 * rest of the kernel modules on darwin.
     399 */
     400PFNRT g_apfnVBoxDrvIPRTDeps[] =
     401{
     402    (PFNRT)RTCrc32,
     403    (PFNRT)RTErrConvertFromErrno,
     404    (PFNRT)RTNetIPv4IsHdrValid
     405    (PFNRT)RTNetIPv4TCPChecksum,
     406    (PFNRT)RTNetIPv4UDPChecksum,
     407    (PFNRT)RTUuidCompare,
     408    (PFNRT)RTUuidCompareStr,
     409    (PFNRT)RTUuidFromStr,
     410    NULL
     411};
     412#endif  /* RT_OS_DARWIN || RT_OS_SOLARIS */
     413
    391414
    392415/**
  • trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp

    r12653 r12808  
    5454#include <iprt/process.h>
    5555#include <iprt/alloc.h>
    56 #include <iprt/uuid.h>
    5756#include <iprt/err.h>
    5857#include <VBox/log.h>
     
    204203static int32_t volatile g_cSessions = 0;
    205204
    206 
    207 /*
    208  * Drag in the rest of IRPT since we share it with the
    209  * rest of the kernel modules on darwin.
    210  */
    211 PFNRT g_apfnVBoxDrvIPRTDeps[] =
    212 {
    213     (PFNRT)RTUuidCompare,
    214     (PFNRT)RTErrConvertFromErrno,
    215     NULL
    216 };
    217205
    218206
  • trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c

    r12691 r12808  
    6060#include <iprt/string.h>
    6161
    62 /**
    63  * Drag in symbols from R0 Runtime required by VBoxNetFlt.
    64  */
    65 #ifdef VBOX_WITH_NETFLT
    66 # include <iprt/crc32.h>
    67 # include <iprt/uuid.h>
    68 # include <iprt/net.h>
    69 
    70 static RTR0PTR g_vboxNetFltSolarisRTR0Symbols[] =
    71 {
    72     (void *)RTCrc32,
    73     (void *)RTUuidFromStr,
    74     (void *)RTUuidCompareStr,
    75     (void *)RTNetIPv4UDPChecksum,
    76     (void *)RTNetIPv4TCPChecksum,
    77     (void *)RTNetIPv4IsHdrValid
    78 };
    79 #endif  /* VBOX_WITH_NETFLT */
    8062
    8163/*******************************************************************************
     
    356338                return DDI_SUCCESS;
    357339            }
    358            
     340
    359341            return DDI_FAILURE;
    360342        }
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