diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2006-10-24 04:41:00 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2006-10-24 04:41:00 +0000 |
commit | 121c56c7a792d506d23a7e308953ea9e79863e8a (patch) | |
tree | 04e363f85c15d79c00b4f2f09fcdde5f99430602 /lib | |
parent | 9aeb4ace96ba3e9d1876d792a1d1fc2ad053fffe (diff) |
add rthread syscalls and bump minor.
rthreads are hardly done, but if just trying it out is too much of a hassle,
we'll never make more progress.
ok brad marc marco mbalmer
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/shlib_version | 2 | ||||
-rw-r--r-- | lib/libc/sys/Makefile.inc | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/shlib_version b/lib/libc/shlib_version index f348dad1ae3..1f93ff2dfee 100644 --- a/lib/libc/shlib_version +++ b/lib/libc/shlib_version @@ -1,4 +1,4 @@ major=40 -minor=0 +minor=1 # note: If changes were made to include/thread_private.h or if system # calls were added/changed then libpthread must also be updated. diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 0e4494d2a69..811b7519505 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.79 2006/10/10 14:18:17 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.80 2006/10/24 04:40:59 tedu Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -58,7 +58,8 @@ ASM= accept.o access.o acct.o adjfreq.o adjtime.o bind.o chdir.o chflags.o \ sigaltstack.o socket.o socketpair.o stat.o statfs.o swapctl.o \ symlink.o sync.o sysarch.o umask.o unlink.o unmount.o \ utimes.o vadvise.o wait4.o write.o writev.o xfspioctl.o __semctl.o \ - __syscall.o __sysctl.o __getcwd.o + __syscall.o __sysctl.o __getcwd.o sched_yield.o getthrid.o \ + thrsleep.o thrwakeup.o threxit.o thrsigdivert.o GASM= ${ASM:.o=.go} PASM= ${ASM:.o=.po} |