enable futex(2) based mutexes on armv7 and use futex based semaphores in
authorjsg <jsg@openbsd.org>
Mon, 24 Sep 2018 11:25:09 +0000 (11:25 +0000)
committerjsg <jsg@openbsd.org>
Mon, 24 Sep 2018 11:25:09 +0000 (11:25 +0000)
librthread on armv7 as well
from brad ok visa@ kettenis@ mpi@

lib/libc/thread/Makefile.inc
lib/librthread/Makefile

index d2b42fa..a462218 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile.inc,v 1.15 2018/05/19 12:27:33 mpi Exp $
+#      $OpenBSD: Makefile.inc,v 1.16 2018/09/24 11:25:09 jsg Exp $
 
 .PATH: ${LIBCSRCDIR}/thread
 
@@ -19,8 +19,8 @@ notyet= rthread_condattr_clock.c \
        spinlock.c \
        spinlocktry.c
 
-.if ${MACHINE_ARCH} == "aarch64" || \
-    ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \
+.if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \
+    ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" || \
     ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" || \
     ${MACHINE_ARCH} == "sparc64"
 CFLAGS+= -DFUTEX
index 7d188db..c7d96c9 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile,v 1.50 2018/06/08 13:53:01 pirofti Exp $
+#      $OpenBSD: Makefile,v 1.51 2018/09/24 11:25:09 jsg Exp $
 
 LIB=pthread
 LIBCSRCDIR=    ${.CURDIR}/../libc
@@ -36,8 +36,8 @@ SRCS= rthread.c \
        sched_prio.c
 
 # Architectures that implement atomics
-.if ${MACHINE_ARCH} == "aarch64" || \
-    ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \
+.if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \
+    ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" || \
     ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" || \
     ${MACHINE_ARCH} == "sparc64"
 SRCS+= rthread_sem.c