mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 17:12:46 +00:00
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.
This commit is contained in:
parent
509de77c10
commit
d8fadc0e80
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19632
@ -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
|
CPLUSPLUSLIB= cpluspluslib
|
||||||
|
|
||||||
@ -7,7 +7,9 @@ CPLUSPLUSLIB= cpluspluslib
|
|||||||
|
|
||||||
SRCS+= \
|
SRCS+= \
|
||||||
uthread_accept.c \
|
uthread_accept.c \
|
||||||
|
uthread_attr_init.c \
|
||||||
uthread_attr_setcreatesuspend_np.c \
|
uthread_attr_setcreatesuspend_np.c \
|
||||||
|
uthread_attr_setstacksize.c \
|
||||||
uthread_autoinit.cc \
|
uthread_autoinit.cc \
|
||||||
uthread_bind.c \
|
uthread_bind.c \
|
||||||
uthread_clean.c \
|
uthread_clean.c \
|
||||||
@ -43,6 +45,9 @@ SRCS+= \
|
|||||||
uthread_kern.c \
|
uthread_kern.c \
|
||||||
uthread_listen.c \
|
uthread_listen.c \
|
||||||
uthread_longjmp.c \
|
uthread_longjmp.c \
|
||||||
|
uthread_mattr_init.c \
|
||||||
|
uthread_mattr_kind_np.c \
|
||||||
|
uthread_multi_np.c \
|
||||||
uthread_mutex.c \
|
uthread_mutex.c \
|
||||||
uthread_nanosleep.c \
|
uthread_nanosleep.c \
|
||||||
uthread_once.c \
|
uthread_once.c \
|
||||||
@ -64,6 +69,7 @@ SRCS+= \
|
|||||||
uthread_sig.c \
|
uthread_sig.c \
|
||||||
uthread_sigaction.c \
|
uthread_sigaction.c \
|
||||||
uthread_sigblock.c \
|
uthread_sigblock.c \
|
||||||
|
uthread_single_np.c \
|
||||||
uthread_signal.c \
|
uthread_signal.c \
|
||||||
uthread_sigprocmask.c \
|
uthread_sigprocmask.c \
|
||||||
uthread_sigsetmask.c \
|
uthread_sigsetmask.c \
|
||||||
|
@ -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
|
CPLUSPLUSLIB= cpluspluslib
|
||||||
|
|
||||||
@ -7,7 +7,9 @@ CPLUSPLUSLIB= cpluspluslib
|
|||||||
|
|
||||||
SRCS+= \
|
SRCS+= \
|
||||||
uthread_accept.c \
|
uthread_accept.c \
|
||||||
|
uthread_attr_init.c \
|
||||||
uthread_attr_setcreatesuspend_np.c \
|
uthread_attr_setcreatesuspend_np.c \
|
||||||
|
uthread_attr_setstacksize.c \
|
||||||
uthread_autoinit.cc \
|
uthread_autoinit.cc \
|
||||||
uthread_bind.c \
|
uthread_bind.c \
|
||||||
uthread_clean.c \
|
uthread_clean.c \
|
||||||
@ -43,6 +45,9 @@ SRCS+= \
|
|||||||
uthread_kern.c \
|
uthread_kern.c \
|
||||||
uthread_listen.c \
|
uthread_listen.c \
|
||||||
uthread_longjmp.c \
|
uthread_longjmp.c \
|
||||||
|
uthread_mattr_init.c \
|
||||||
|
uthread_mattr_kind_np.c \
|
||||||
|
uthread_multi_np.c \
|
||||||
uthread_mutex.c \
|
uthread_mutex.c \
|
||||||
uthread_nanosleep.c \
|
uthread_nanosleep.c \
|
||||||
uthread_once.c \
|
uthread_once.c \
|
||||||
@ -64,6 +69,7 @@ SRCS+= \
|
|||||||
uthread_sig.c \
|
uthread_sig.c \
|
||||||
uthread_sigaction.c \
|
uthread_sigaction.c \
|
||||||
uthread_sigblock.c \
|
uthread_sigblock.c \
|
||||||
|
uthread_single_np.c \
|
||||||
uthread_signal.c \
|
uthread_signal.c \
|
||||||
uthread_sigprocmask.c \
|
uthread_sigprocmask.c \
|
||||||
uthread_sigsetmask.c \
|
uthread_sigsetmask.c \
|
||||||
|
@ -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
|
CPLUSPLUSLIB= cpluspluslib
|
||||||
|
|
||||||
@ -7,7 +7,9 @@ CPLUSPLUSLIB= cpluspluslib
|
|||||||
|
|
||||||
SRCS+= \
|
SRCS+= \
|
||||||
uthread_accept.c \
|
uthread_accept.c \
|
||||||
|
uthread_attr_init.c \
|
||||||
uthread_attr_setcreatesuspend_np.c \
|
uthread_attr_setcreatesuspend_np.c \
|
||||||
|
uthread_attr_setstacksize.c \
|
||||||
uthread_autoinit.cc \
|
uthread_autoinit.cc \
|
||||||
uthread_bind.c \
|
uthread_bind.c \
|
||||||
uthread_clean.c \
|
uthread_clean.c \
|
||||||
@ -43,6 +45,9 @@ SRCS+= \
|
|||||||
uthread_kern.c \
|
uthread_kern.c \
|
||||||
uthread_listen.c \
|
uthread_listen.c \
|
||||||
uthread_longjmp.c \
|
uthread_longjmp.c \
|
||||||
|
uthread_mattr_init.c \
|
||||||
|
uthread_mattr_kind_np.c \
|
||||||
|
uthread_multi_np.c \
|
||||||
uthread_mutex.c \
|
uthread_mutex.c \
|
||||||
uthread_nanosleep.c \
|
uthread_nanosleep.c \
|
||||||
uthread_once.c \
|
uthread_once.c \
|
||||||
@ -64,6 +69,7 @@ SRCS+= \
|
|||||||
uthread_sig.c \
|
uthread_sig.c \
|
||||||
uthread_sigaction.c \
|
uthread_sigaction.c \
|
||||||
uthread_sigblock.c \
|
uthread_sigblock.c \
|
||||||
|
uthread_single_np.c \
|
||||||
uthread_signal.c \
|
uthread_signal.c \
|
||||||
uthread_sigprocmask.c \
|
uthread_sigprocmask.c \
|
||||||
uthread_sigsetmask.c \
|
uthread_sigsetmask.c \
|
||||||
|
Loading…
Reference in New Issue
Block a user