- Timestamp:
- Feb 18, 2009 10:49:55 AM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r16546 r16888 181 181 static SUPDRVDEVEXT g_DevExt; 182 182 183 /* GCC C++ hack. */184 unsigned __gxx_personality_v0 = 0xcccccccc;185 186 183 /** Hash table */ 187 184 static PSUPDRVSESSION g_apSessionHashTab[19]; -
trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris/VBoxNetAdp-solaris.c
r16880 r16888 61 61 /** The module descriptions as seen in 'modinfo'. */ 62 62 #define DEVICE_DESC_DRV "VirtualBox NetAdp" 63 #define DEVICE_DESC_MOD "VirtualBox AdpMod"64 63 #define VBOXNETADP_MTU 1500 65 64 … … 82 81 0, /* min. packet size */ 83 82 INFPSZ, /* max. packet size */ 84 0, /* hi-water ma sk */85 0 /* lo-water ma sk */83 0, /* hi-water mark */ 84 0 /* lo-water mark */ 86 85 }; 87 86 … … 196 195 /** The default ethernet broadcast address */ 197 196 static uchar_t achBroadcastAddr[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; 198 199 /** GCC C++ hack. */200 unsigned __gxx_personality_v0 = 0xbadb100d;201 197 202 198 … … 497 493 static int vboxNetAdpSolarisSetPromisc(gld_mac_info_t *pMacInfo, int fPromisc) 498 494 { 499 500 } 501 495 NOREF(pMacInfo); 496 NOREF(fPromisc); 497 return GLD_SUCCESS; 498 } 499 -
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r16546 r16888 151 151 0, /* min. packet size */ 152 152 INFPSZ, /* max. packet size */ 153 0, /* hi-water ma sk */154 0 /* lo-water ma sk */153 0, /* hi-water mark */ 154 0 /* lo-water mark */ 155 155 }; 156 156 … … 390 390 /** Goes along with the instance to determine type of stream being opened/created. */ 391 391 VBOXNETFLTSTREAMTYPE volatile g_VBoxNetFltSolarisStreamType; 392 393 /** GCC C++ hack. */394 unsigned __gxx_personality_v0 = 0xdecea5ed;395 392 396 393
Note:
See TracChangeset
for help on using the changeset viewer.