Changeset 60603 in vbox
- Timestamp:
- Apr 20, 2016 2:32:19 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asm.h
r60228 r60603 3954 3954 * @remarks No alignment requirements. 3955 3955 */ 3956 #if !defined(RT_OS_LINUX) || !defined(__KERNEL__) 3956 #if (!defined(RT_OS_LINUX) || !defined(__KERNEL__)) \ 3957 && (!defined(RT_OS_FREEBSD) || !defined(_KERNEL)) 3957 3958 DECLASM(void *) ASMMemFirstMismatchingU8(void const *pv, size_t cb, uint8_t u8); 3958 3959 #else -
trunk/include/iprt/string.h
r60028 r60603 114 114 #endif 115 115 116 #if !defined(RT_OS_LINUX) || !defined(_GNU_SOURCE)116 #if (!defined(RT_OS_LINUX) || !defined(_GNU_SOURCE)) && !defined(RT_OS_FREEBSD) 117 117 RT_C_DECLS_BEGIN 118 118 void *memrchr(const char *pv, int ch, size_t cb); -
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r60452 r60603 468 468 /* VBoxUSB */ 469 469 (PFNRT)RTPathStripFilename, 470 #if !defined(RT_OS_FREEBSD) 470 471 (PFNRT)RTStrPurgeEncoding, 472 #endif 471 473 NULL 472 474 }; -
trunk/src/VBox/HostDrivers/Support/freebsd/Makefile
r55095 r60603 149 149 SRCS += \ 150 150 alloc-r0drv.c \ 151 alloc-ef-r0drv.c \ 151 152 initterm-r0drv.c \ 152 153 memobj-r0drv.c \ -
trunk/src/VBox/HostDrivers/Support/freebsd/files_vboxdrv
r57943 r60603 152 152 ${PATH_ROOT}/src/VBox/Runtime/include/internal/lockvalidator.h=>include/internal/lockvalidator.h \ 153 153 ${PATH_ROOT}/src/VBox/Runtime/include/internal/magics.h=>include/internal/magics.h \ 154 ${PATH_ROOT}/src/VBox/Runtime/include/internal/mem.h=>include/internal/mem.h \ 154 155 ${PATH_ROOT}/src/VBox/Runtime/include/internal/memobj.h=>include/internal/memobj.h \ 155 156 ${PATH_ROOT}/src/VBox/Runtime/include/internal/string.h=>include/internal/string.h \ … … 178 179 ${PATH_ROOT}/src/VBox/Runtime/generic/uuid-generic.cpp=>generic/uuid-generic.c \ 179 180 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.cpp=>r0drv/alloc-r0drv.c \ 181 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp=>r0drv/alloc-ef-r0drv.c \ 180 182 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.h=>r0drv/alloc-r0drv.h \ 181 183 ${PATH_ROOT}/src/VBox/Runtime/r0drv/initterm-r0drv.cpp=>r0drv/initterm-r0drv.c \ -
trunk/src/VBox/Runtime/r0drv/alloc-ef-r0drv.cpp
r59747 r60603 118 118 #ifdef RT_OS_WINDOWS 119 119 # include <Windows.h> 120 #el se120 #elif !defined(RT_OS_FREEBSD) 121 121 # include <sys/mman.h> 122 122 #endif … … 382 382 * This is something which you should call from gdb. 383 383 */ 384 extern "C" void RTMemDump(void); 384 RT_C_DECLS_BEGIN 385 void RTMemDump(void); 386 RT_C_DECLS_END 387 385 388 void RTMemDump(void) 386 389 {
Note:
See TracChangeset
for help on using the changeset viewer.