diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2018-10-15 13:03:12 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2018-10-15 13:03:12 +0000 |
commit | b504f5abdeb5375620ac138e851d152e67606599 (patch) | |
tree | 1b21e3409b5819e2a356008c3580016113521e0d /lib/libc | |
parent | 8e0d1e2ec328ca519830c7aa0ca878fdf5b33cbb (diff) |
Switch powerpc to futex(2) based condvars, mutexes and semaphores.
From Brad, OK mpi@ kettenis@
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/thread/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/thread/Makefile.inc b/lib/libc/thread/Makefile.inc index a46221808f9..bd53875baa6 100644 --- a/lib/libc/thread/Makefile.inc +++ b/lib/libc/thread/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.16 2018/09/24 11:25:09 jsg Exp $ +# $OpenBSD: Makefile.inc,v 1.17 2018/10/15 13:03:11 visa Exp $ .PATH: ${LIBCSRCDIR}/thread @@ -22,7 +22,7 @@ notyet= rthread_condattr_clock.c \ .if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \ ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" || \ ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" || \ - ${MACHINE_ARCH} == "sparc64" + ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64" CFLAGS+= -DFUTEX SRCS+= rthread_mutex.c \ rthread_cond.c |