Changeset 28338 in vbox
- Timestamp:
- Apr 14, 2010 10:13:58 PM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r28332 r28338 764 764 765 765 if1of ($(VBOX_LDR_FMT), pe lx) 766 VBoxDDR0_LIBS = $(PATH_LIB)/VMMR0Imp$(VBOX_SUFF_LIB) 766 VBoxDDR0_LIBS = \ 767 $(PATH_LIB)/VMMR0Imp$(VBOX_SUFF_LIB) \ 768 $(PATH_LIB)/SUP0$(VBOX_SUFF_LIB) 767 769 endif 768 770 -
trunk/src/VBox/Devices/Network/DevE1000.cpp
r28335 r28338 1992 1992 static int e1kHandleRxPacket(E1KSTATE* pState, const void *pvBuf, size_t cb, E1KRXDST status) 1993 1993 { 1994 #if defined(IN_RING3) /** @todo Remove this extra copying, it's gonna make us run out of kernel / hypervisor stack! */ 1994 1995 uint8_t rxPacket[E1K_MAX_RX_PKT_SIZE]; 1995 1996 uint8_t *ptr = rxPacket; … … 2111 2112 2112 2113 return VINF_SUCCESS; 2114 #else 2115 return VERR_INTERNAL_ERROR_2; 2116 #endif 2113 2117 } 2114 2118 -
trunk/src/VBox/VMM/VMMR0/VMMR0.def
r28320 r28338 82 82 memcpy=nocrt_memcpy ; not-os2 83 83 nocrt_memset 84 memset=nocrt_memset ; not-os2 84 85 nocrt_strcpy 85 86 nocrt_strcmp
Note:
See TracChangeset
for help on using the changeset viewer.