aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2006-07-23 13:08:54 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2006-07-23 13:08:54 +0000
commite257c93bbcfd2736d99fe479c20b6468c3decb4c (patch)
treeeffb657061f96bb9146c78ab2428212f57d0f554 /lib
parentc9db0fad090fac6358555660a4c0bcffaecd3495 (diff)
downloadsrc-e257c93bbcfd2736d99fe479c20b6468c3decb4c.tar.gz
src-e257c93bbcfd2736d99fe479c20b6468c3decb4c.zip
Add missing syscalls.
Reviewed by: deischen Approved by: deischen
Notes
Notes: svn path=/head/; revision=160592
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/sys/Symbol.map12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libc/sys/Symbol.map b/lib/libc/sys/Symbol.map
index 7877aac8b708..864d06366d0d 100644
--- a/lib/libc/sys/Symbol.map
+++ b/lib/libc/sys/Symbol.map
@@ -42,6 +42,7 @@ FBSD_1.0 {
adjtime;
aio_cancel;
aio_error;
+ aio_fsync;
aio_read;
aio_return;
aio_suspend;
@@ -293,10 +294,13 @@ FBSD_1.0 {
syscall;
thr_create;
thr_exit;
+ thr_getscheduler;
thr_kill;
thr_new;
thr_self;
thr_set_name;
+ thr_setschedparam;
+ thr_setscheduler
thr_suspend;
thr_wake;
ktimer_create; # Do we want these to be publc interfaces?
@@ -400,6 +404,8 @@ FBSDprivate {
__sys_aio_cancel;
_aio_error;
__sys_aio_error;
+ _aio_fsync;
+ __sys_aio_fsync;
_aio_read;
__sys_aio_read;
_aio_return;
@@ -902,6 +908,8 @@ FBSDprivate {
__sys_thr_create;
_thr_exit;
__sys_thr_exit;
+ _thr_getscheduler;
+ __sys_thr_getscheduler;
_thr_kill;
__sys_thr_kill;
_thr_new;
@@ -910,6 +918,10 @@ FBSDprivate {
__sys_thr_self;
_thr_set_name;
__sys_thr_set_name;
+ _thr_setschedparam;
+ __sys_thr_setscheduler;
+ _thr_setscheduler;
+ __sys_thr_setscheduler;
_thr_suspend;
__sys_thr_suspend;
_thr_wake;