Add missing syscalls.
Reviewed by: deischen Approved by: deischen
This commit is contained in:
parent
fe855a5667
commit
799a5bd29c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user