diff options
author | 2018-10-15 13:03:11 +0000 | |
---|---|---|
committer | 2018-10-15 13:03:11 +0000 | |
commit | 94fcb5388a8e944153fb2d66d69e156cf67adf78 (patch) | |
tree | 64d05f355c4bf8881c7f3b4a2cfd7aeb2ce7f5e5 /lib/libc | |
parent | No need to check ai_addrlen when we already checked ai_family, we (diff) | |
download | wireguard-openbsd-94fcb5388a8e944153fb2d66d69e156cf67adf78.tar.xz wireguard-openbsd-94fcb5388a8e944153fb2d66d69e156cf67adf78.zip |
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 |