diff options
author | nork <nork@FreeBSD.org> | 2006-07-23 13:08:54 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2006-07-23 13:08:54 +0000 |
commit | 799a5bd29c8306e981573b702f6a672d474de00b (patch) | |
tree | effb657061f96bb9146c78ab2428212f57d0f554 /lib | |
parent | fe855a5667abc09ede59fae965de56b1c90ed0af (diff) | |
download | FreeBSD-src-799a5bd29c8306e981573b702f6a672d474de00b.zip FreeBSD-src-799a5bd29c8306e981573b702f6a672d474de00b.tar.gz |
Add missing syscalls.
Reviewed by: deischen
Approved by: deischen
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/Symbol.map | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libc/sys/Symbol.map b/lib/libc/sys/Symbol.map index 7877aac..864d063 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; |