Changeset 13812 in vbox
- Timestamp:
- Nov 4, 2008 9:48:55 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r13806 r13812 1038 1038 endif 1039 1039 ## @todo eliminate these guys. 1040 ifdef VBOX_WITH_INTERNAL_NETWORKING1041 DEFS += VBOX_WITH_INTERNAL_NETWORKING1042 endif1043 1040 ifdef VBOX_WITH_NEW_RECOMPILER 1044 1041 DEFS += VBOX_WITH_NEW_RECOMPILER -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r13714 r13812 66 66 * Global Variables * 67 67 *******************************************************************************/ 68 #ifdef VBOX_WITH_INTERNAL_NETWORKING69 68 /** Pointer to the internal networking service instance. */ 70 69 PINTNET g_pIntNet = 0; 71 #endif72 70 73 71 … … 95 93 if (RT_SUCCESS(rc)) 96 94 { 97 #ifdef VBOX_WITH_INTERNAL_NETWORKING98 95 LogFlow(("ModuleInit: g_pIntNet=%p\n", g_pIntNet)); 99 96 g_pIntNet = NULL; … … 107 104 g_pIntNet = NULL; 108 105 LogFlow(("ModuleTerm: returns %Vrc\n", rc)); 109 #else110 LogFlow(("ModuleInit: returns success.\n"));111 return VINF_SUCCESS;112 #endif113 106 } 114 107 } … … 128 121 LogFlow(("ModuleTerm:\n")); 129 122 130 #ifdef VBOX_WITH_INTERNAL_NETWORKING131 123 /* 132 124 * Destroy the internal networking instance. … … 137 129 g_pIntNet = NULL; 138 130 } 139 #endif140 131 141 132 /* Global HWACCM cleanup */ … … 898 889 899 890 900 #ifdef VBOX_WITH_INTERNAL_NETWORKING901 891 /* 902 892 * Requests to the internal networking service. … … 960 950 return VERR_NOT_SUPPORTED; 961 951 return INTNETR0IfWaitReq(g_pIntNet, pSession, (PINTNETIFWAITREQ)pReqHdr); 962 #endif /* VBOX_WITH_INTERNAL_NETWORKING */963 952 964 953 /*
Note:
See TracChangeset
for help on using the changeset viewer.