Changeset 21948 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Aug 3, 2009 4:59:09 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50635
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r21546 r21948 54 54 # include <iprt/net.h> 55 55 # include <iprt/string.h> 56 # include <iprt/rand.h> 57 # include <iprt/path.h> 56 58 #endif 57 59 /* VBox/x86.h not compatible with the Linux kernel sources */ … … 480 482 PFNRT g_apfnVBoxDrvIPRTDeps[] = 481 483 { 484 /* VBoxNetFlt */ 482 485 (PFNRT)RTCrc32, 483 486 (PFNRT)RTErrConvertFromErrno, … … 490 493 (PFNRT)RTStrDup, 491 494 (PFNRT)RTStrFree, 495 /* VBoxNetAdp */ 496 (PFNRT)RTRandBytes, 497 /* VBoxUSB */ 498 (PFNRT)RTPathStripFilename, 492 499 NULL 493 500 }; -
trunk/src/VBox/HostDrivers/VBoxNetAdp/Makefile.kmk
r18973 r21948 55 55 #VBoxNetAdp_SOURCES = \ 56 56 # VBoxNetAdp.c 57 VBoxNetAdp_LIBS.solaris += \58 $(PATH_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)59 57 VBoxNetAdp_LIBS += \ 60 58 $(PATH_LIB)/SUPR0IdcClient$(VBOX_SUFF_LIB) -
trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris/VBoxNetAdp-solaris.c
r21909 r21948 234 234 if (RT_SUCCESS(rc)) 235 235 { 236 /*237 * Create the release logger instance.238 */239 static const char *const s_apszGroups[] = VBOX_LOGGROUP_NAMES;240 PRTLOGGER pRelLogger;241 rc = RTLogCreate(&pRelLogger, 0 /* fFlags */, "all", "VBOX_RELEASE_LOG", RT_ELEMENTS(s_apszGroups), s_apszGroups,242 RTLOGDEST_STDOUT | RTLOGDEST_DEBUGGER, NULL);243 if (RT_SUCCESS(rc))244 RTLogRelSetDefaultInstance(pRelLogger);245 246 236 rc = mod_install(&g_VBoxNetAdpSolarisModLinkage); 247 237 if (!rc) … … 249 239 250 240 LogRel((DEVICE_NAME ":mod_install failed. rc=%d\n", rc)); 251 RTLogDestroy(RTLogRelSetDefaultInstance(NULL));252 RTLogDestroy(RTLogSetDefaultInstance(NULL));253 241 RTR0Term(); 254 242 } … … 268 256 * Undo the work done during start (in reverse order). 269 257 */ 270 RTLogDestroy(RTLogRelSetDefaultInstance(NULL));271 RTLogDestroy(RTLogSetDefaultInstance(NULL));272 258 RTR0Term(); 273 259
Note:
See TracChangeset
for help on using the changeset viewer.