blob: d2b42faca7a866cd42852f31ddfd676c087f0ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $OpenBSD: Makefile.inc,v 1.15 2018/05/19 12:27:33 mpi Exp $
.PATH: ${LIBCSRCDIR}/thread
SRCS+= callbacks.c atfork.c
# threads infrastructure
SRCS+= rthread.c \
rthread_condattr.c \
rthread_debug.c \
rthread_file.c \
rthread_libc.c \
rthread_once.c \
rthread_tls.c \
notyet= rthread_condattr_clock.c \
rthread_equal.c \
rthread_exit.c \
spinlock.c \
spinlocktry.c
.if ${MACHINE_ARCH} == "aarch64" || \
${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \
${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" || \
${MACHINE_ARCH} == "sparc64"
CFLAGS+= -DFUTEX
SRCS+= rthread_mutex.c \
rthread_cond.c
.else
SRCS+= rthread_sync.c
.endif
.if defined(NOPIC)
CFLAGS+=-DNO_PIC
.endif
OBJS+= _atomic_lock.o
|