- Timestamp:
- Mar 8, 2007 9:37:48 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r1345 r1348 25 25 *******************************************************************************/ 26 26 #define LOG_GROUP LOG_GROUP_VMM 27 #ifdef __AMD64__ /** @todo fix logging on __AMD64__ (swapgs) */27 #ifdef __AMD64__ /** @todo fix logging on __AMD64__ (swapgs) - this has been fixed now. please remove. */ 28 28 # define LOG_DISABLED 29 29 #endif … … 69 69 * Global Variables * 70 70 *******************************************************************************/ 71 #if ndef __AMD64__ /* doesn't link here */71 #ifdef VBOX_WITH_INTERNAL_NETWORKING 72 72 /** Pointer to the internal networking service instance. */ 73 PINTNET 74 #endif 73 PINTNET g_pIntNet = 0; 74 #endif 75 75 76 76 … … 84 84 VMMR0DECL(int) ModuleInit(void) 85 85 { 86 #if ndef __AMD64__ /* doesn't link here */86 #ifdef VBOX_WITH_INTERNAL_NETWORKING 87 87 LogFlow(("ModuleInit: g_pIntNet=%p\n", g_pIntNet)); 88 88 g_pIntNet = NULL; … … 109 109 VMMR0DECL(void) ModuleTerm(void) 110 110 { 111 #if ndef __AMD64__ /* doesn't link here */111 #ifdef VBOX_WITH_INTERNAL_NETWORKING 112 112 LogFlow(("ModuleTerm:\n")); 113 113 if (g_pIntNet)
Note:
See TracChangeset
for help on using the changeset viewer.