Changeset 14429 in vbox for trunk/src/VBox
- Timestamp:
- Nov 20, 2008 5:23:43 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r14423 r14429 388 388 r3/linux/semevent-linux.cpp \ 389 389 r3/linux/semeventmulti-linux.cpp 390 # with glibc >= 2.6 we use the libc implementation 391 r3/linux/semevent-linux.cpp_INCS = . 392 r3/linux/semeventmulti-linux.cpp_INCS = . 390 393 ifdef RT_NEW_LINUX_MUTEX_CODE 391 394 RuntimeR3_SOURCES.linux.amd64 += \ -
trunk/src/VBox/Runtime/r3/linux/semevent-linux.cpp
r14412 r14429 29 29 */ 30 30 31 #include <features.h> 32 #if __GLIBC_PREREQ(2,6) 33 34 /* glibc 2.6 fixed a serious bug in the mutex implementation 35 * The external refernce to epoll_pwait is a hack which prevents 36 * that we link against glibc < 2.6 */ 37 38 asm volatile (".global epoll_pwait"); 39 40 #include "r3/posix/semevent-posix.cpp" 41 42 #else /* glibc < 2.6 */ 43 31 44 /******************************************************************************* 32 45 * Header Files * … … 297 310 } 298 311 312 #endif /* glibc < 2.6 */ -
trunk/src/VBox/Runtime/r3/linux/semeventmulti-linux.cpp
r8707 r14429 28 28 * additional information or have any questions. 29 29 */ 30 31 32 #include <features.h> 33 #if __GLIBC_PREREQ(2,6) 34 35 /* glibc 2.6 fixed a serious bug in the mutex implementation. 36 * The external refernce to epoll_pwait is a hack which prevents 37 * that we link against glibc < 2.6 */ 38 39 asm volatile (".global epoll_pwait"); 40 41 #include "r3/posix/semeventmulti-posix.cpp" 42 43 #else /* glibc < 2.6 */ 30 44 31 45 /******************************************************************************* … … 269 283 } 270 284 285 #endif /* glibc < 2.6 */
Note:
See TracChangeset
for help on using the changeset viewer.