- Timestamp:
- Jul 30, 2010 3:38:52 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r31181 r31252 3991 3991 TEMPLATE_VBOXGUESTR3XORGMOD_LIBS.$(KBUILD_TARGET) = $(NO_SUCH_VARIABLE) 3992 3992 TEMPLATE_VBOXGUESTR3XORGMOD_CFLAGS = $(TEMPLATE_VBOXGUESTR3DLL_CFLAGS) -std=c99 3993 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR VBOX_GUESTR3XORGMOD RTMEM_NO_WRAP_TO_EF_APIS3993 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS = $(TEMPLATE_VBOXGUESTR3DLL_DEFS) LOG_TO_BACKDOOR VBOX_GUESTR3XORGMOD 3994 3994 ifeq ($(KBUILD_TARGET_ARCH),amd64) 3995 3995 TEMPLATE_VBOXGUESTR3XORGMOD_DEFS += _XSERVER64 -
trunk/include/iprt/mem.h
r31157 r31252 818 818 template <class T, 819 819 void Destruct(T *) = RTMemAutoDestructor<T>, 820 # if def RTMEM_WRAP_TO_EF_APIS820 # if defined(RTMEM_WRAP_TO_EF_APIS) && !defined(RTMEM_NO_WRAP_TO_EF_APIS) 821 821 void *Allocator(void *, size_t, const char *) = RTMemEfReallocNP 822 822 # else -
trunk/src/VBox/Additions/x11/vboxmouse/undefined_15
r30395 r31252 97 97 sigfillset 98 98 pthread_sigmask 99 mprotect 100 mmap64 101 memalign 102 posix_memalign 103 munmap -
trunk/src/VBox/Additions/x11/vboxmouse/undefined_70
r30395 r31252 148 148 sigfillset 149 149 pthread_sigmask 150 mprotect 151 mmap64 152 memalign 153 posix_memalign 154 munmap -
trunk/src/VBox/Additions/x11/vboxmouse/undefined_71
r30395 r31252 146 146 sigfillset 147 147 pthread_sigmask 148 mprotect 149 mmap64 150 memalign 151 posix_memalign 152 munmap -
trunk/src/VBox/Additions/x11/vboxvideo/undefined_13
r30395 r31252 184 184 sigfillset 185 185 pthread_sigmask 186 mprotect 187 mmap64 188 memalign 189 posix_memalign 190 munmap -
trunk/src/VBox/Additions/x11/vboxvideo/undefined_70
r30395 r31252 187 187 sigfillset 188 188 pthread_sigmask 189 mprotect 190 mmap64 191 memalign 192 posix_memalign 193 munmap -
trunk/src/VBox/Runtime/Makefile.kmk
r30962 r31252 876 876 RuntimeGuestR3Mini_INST := $(INST_ADDITIONS_LIB) 877 877 RuntimeGuestR3Mini_SDKS.win := $(RuntimeR3_SDKS.win) 878 RuntimeGuestR3Mini_DEFS := $(filter-out RTCRITSECT_STRICT RT_NO_GIP RT_WITH_ICONV_CACHE, $(RuntimeR3_DEFS)) RT_MINI 878 RuntimeGuestR3Mini_DEFS := \ 879 $(filter-out RTCRITSECT_STRICT RT_NO_GIP RT_WITH_ICONV_CACHE, $(RuntimeR3_DEFS)) \ 880 RT_MINI 879 881 RuntimeGuestR3Mini_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET)) 880 882 RuntimeGuestR3Mini_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST)) -
trunk/src/VBox/Runtime/r3/alloc-ef-cpp.cpp
r31157 r31252 30 30 #include "alloc-ef.h" 31 31 32 #if defined(RTALLOC_EFENCE_CPP) || defined(RTMEM_WRAP_TO_EF_APIS) /* rest of the file */ 32 #if defined(RTALLOC_EFENCE_CPP) \ 33 || (defined(RTMEM_WRAP_TO_EF_APIS) && !defined(RTMEM_NO_WRAP_TO_EF_APIS)) /* rest of the file */ 33 34 34 35 #include <iprt/asm.h> -
trunk/src/VBox/Runtime/r3/alloc.cpp
r31157 r31252 29 29 * Defined Constants And Macros * 30 30 *******************************************************************************/ 31 #if def RTMEM_WRAP_TO_EF_APIS31 #if defined(RTMEM_WRAP_TO_EF_APIS) && !defined(RTMEM_NO_WRAP_TO_EF_APIS) 32 32 # undef RTMEM_WRAP_TO_EF_APIS 33 33 # define RTALLOC_USE_EFENCE 1
Note:
See TracChangeset
for help on using the changeset viewer.