diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-01-04 17:43:35 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2012-01-04 17:43:35 +0000 |
commit | 0d5f7123c39d5acf2e4f31f2bbbc4b9e6e0e5f14 (patch) | |
tree | 6d5911a2c2828bc4104ad112d47e1eb196c9022c /lib/librthread/Makefile | |
parent | 0c3f00059454f1e56734c845764e4606b78bf91c (diff) |
Split out the semaphore functions.
ok guenther@
Diffstat (limited to 'lib/librthread/Makefile')
-rw-r--r-- | lib/librthread/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/librthread/Makefile b/lib/librthread/Makefile index 3586e8179a7..83f692d9290 100644 --- a/lib/librthread/Makefile +++ b/lib/librthread/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.22 2011/12/22 00:42:07 guenther Exp $ +# $OpenBSD: Makefile,v 1.23 2012/01/04 17:43:34 mpi Exp $ LIB=rthread WANTLINT= @@ -15,7 +15,8 @@ SRCS= rthread.c rthread_attr.c rthread_sched.c rthread_sync.c rthread_tls.c \ rthread_sig.c rthread_np.c rthread_debug.c rthread_stack.c \ rthread_libc.c rthread_fork.c rthread_file.c sched_prio.c \ rthread_cancel.c rthread_mutexattr.c rthread_once.c \ - rthread_rwlock.c rthread_rwlockattr.c rthread_mutex_prio.c + rthread_rwlock.c rthread_rwlockattr.c rthread_mutex_prio.c \ + rthread_sem.c OBJS+= _atomic_lock.o rfork_thread.o cerror.o |