summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/pthread
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-09-22 15:13:17 -0700
committerAustin Foxley <austinf@cetoncorp.com>2009-09-22 15:13:17 -0700
commitb10ae3e1a7c105609771b0de911ff9e72a4cc0d1 (patch)
tree714bff4be539f60d1467d4b2a4373fa9e7d940f8 /libpthread/nptl/sysdeps/pthread
parent51468f1123252fbc9f1cbb244160cf7d95d01334 (diff)
downloaduClibc-alpine-b10ae3e1a7c105609771b0de911ff9e72a4cc0d1.tar.bz2
uClibc-alpine-b10ae3e1a7c105609771b0de911ff9e72a4cc0d1.tar.xz
spent this morning beating i386 nptl into shape
Got it compiling thus far, still working on getting it to run Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
-rw-r--r--libpthread/nptl/sysdeps/pthread/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/Makefile.in b/libpthread/nptl/sysdeps/pthread/Makefile.in
index 23e8ffb01..2a825329a 100644
--- a/libpthread/nptl/sysdeps/pthread/Makefile.in
+++ b/libpthread/nptl/sysdeps/pthread/Makefile.in
@@ -22,7 +22,13 @@ libpthread_CSRC = pthread_barrier_wait.c pthread_cond_broadcast.c \
ifeq ($(TARGET_ARCH),i386)
-libpthread_CSRC += pthread_once.c
+X86_PTHREAD_EXCLUDE_LIST = pthread_spin_unlock.c pthread_spin_init.c \
+ pthread_cond_wait.c pthread_barrier_wait.c pthread_cond_broadcast.c \
+ pthread_cond_signal.c pthread_cond_timedwait.c pthread_rwlock_timedrdlock.c \
+ pthread_rwlock_timedwrlock.c pthread_rwlock_unlock.c pthread_rwlock_wrlock.c \
+ pthread_rwlock_rdlock.c
+
+libpthread_CSRC := $(filter-out $(X86_PTHREAD_EXCLUDE_LIST),$(libpthread_CSRC))
endif
ifeq ($(TARGET_ARCH),sh)