Changeset 21948 in vbox for trunk/src/VBox/HostDrivers/VBoxNetAdp
- Timestamp:
- Aug 3, 2009 4:59:09 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50635
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetAdp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.