diff options
author | hsu <hsu@FreeBSD.org> | 1996-11-11 09:08:11 +0000 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1996-11-11 09:08:11 +0000 |
commit | f809f504244617b033a62f4181c9e147404bf8da (patch) | |
tree | 5ce8efbf96c59930f46b87e44ef7fd31c28f5a36 /lib/libkse | |
parent | fae58f5f6280bc3bc81efdecc2ea81c609176c58 (diff) | |
download | FreeBSD-src-f809f504244617b033a62f4181c9e147404bf8da.zip FreeBSD-src-f809f504244617b033a62f4181c9e147404bf8da.tar.gz |
Add uthread_attr_init.c, uthread_attr_setstacksize.c, uthread_mattr_init.c,
uthread_mattr_kind_np.c, uthread_multi_np.c, and uthread_single_np.c.
Diffstat (limited to 'lib/libkse')
-rw-r--r-- | lib/libkse/thread/Makefile.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libkse/thread/Makefile.inc b/lib/libkse/thread/Makefile.inc index 72a6e57..85dd930 100644 --- a/lib/libkse/thread/Makefile.inc +++ b/lib/libkse/thread/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.2 1996/02/17 02:19:35 jdp Exp $ +# $Id: Makefile.inc,v 1.3 1996/08/20 08:20:59 julian Exp $ CPLUSPLUSLIB= cpluspluslib @@ -7,7 +7,9 @@ CPLUSPLUSLIB= cpluspluslib SRCS+= \ uthread_accept.c \ + uthread_attr_init.c \ uthread_attr_setcreatesuspend_np.c \ + uthread_attr_setstacksize.c \ uthread_autoinit.cc \ uthread_bind.c \ uthread_clean.c \ @@ -43,6 +45,9 @@ SRCS+= \ uthread_kern.c \ uthread_listen.c \ uthread_longjmp.c \ + uthread_mattr_init.c \ + uthread_mattr_kind_np.c \ + uthread_multi_np.c \ uthread_mutex.c \ uthread_nanosleep.c \ uthread_once.c \ @@ -64,6 +69,7 @@ SRCS+= \ uthread_sig.c \ uthread_sigaction.c \ uthread_sigblock.c \ + uthread_single_np.c \ uthread_signal.c \ uthread_sigprocmask.c \ uthread_sigsetmask.c \ |