- Timestamp:
- Sep 29, 2008 3:19:15 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37160
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r12492 r12808 47 47 #include <VBox/log.h> 48 48 #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 49 53 /* VBox/x86.h not compatible with the Linux kernel sources */ 50 54 #ifdef RT_OS_LINUX … … 389 393 }; 390 394 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 */ 400 PFNRT 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 391 414 392 415 /** -
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r12653 r12808 54 54 #include <iprt/process.h> 55 55 #include <iprt/alloc.h> 56 #include <iprt/uuid.h>57 56 #include <iprt/err.h> 58 57 #include <VBox/log.h> … … 204 203 static int32_t volatile g_cSessions = 0; 205 204 206 207 /*208 * Drag in the rest of IRPT since we share it with the209 * rest of the kernel modules on darwin.210 */211 PFNRT g_apfnVBoxDrvIPRTDeps[] =212 {213 (PFNRT)RTUuidCompare,214 (PFNRT)RTErrConvertFromErrno,215 NULL216 };217 205 218 206 -
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r12691 r12808 60 60 #include <iprt/string.h> 61 61 62 /**63 * Drag in symbols from R0 Runtime required by VBoxNetFlt.64 */65 #ifdef VBOX_WITH_NETFLT66 # 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 *)RTNetIPv4IsHdrValid78 };79 #endif /* VBOX_WITH_NETFLT */80 62 81 63 /******************************************************************************* … … 356 338 return DDI_SUCCESS; 357 339 } 358 340 359 341 return DDI_FAILURE; 360 342 }
Note:
See TracChangeset
for help on using the changeset viewer.