From 8451d0dd78c0a9c0383485b18aba9f081a9db8bb Mon Sep 17 00:00:00 2001 From: Kip Macy Date: Fri, 16 Sep 2011 13:58:51 +0000 Subject: In order to maximize the re-usability of kernel code in user space this patch modifies makesyscalls.sh to prefix all of the non-compatibility calls (e.g. not linux_, freebsd32_) with sys_ and updates the kernel entry points and all places in the code that use them. It also fixes an additional name space collision between the kernel function psignal and the libc function of the same name by renaming the kernel psignal kern_psignal(). By introducing this change now we will ease future MFCs that change syscalls. Reviewed by: rwatson Approved by: re (bz) --- sys/kern/kern_context.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/kern/kern_context.c') diff --git a/sys/kern/kern_context.c b/sys/kern/kern_context.c index 9230857e1c72..70751d02cba8 100644 --- a/sys/kern/kern_context.c +++ b/sys/kern/kern_context.c @@ -60,7 +60,7 @@ struct swapcontext_args { #endif int -getcontext(struct thread *td, struct getcontext_args *uap) +sys_getcontext(struct thread *td, struct getcontext_args *uap) { ucontext_t uc; int ret; @@ -79,7 +79,7 @@ getcontext(struct thread *td, struct getcontext_args *uap) } int -setcontext(struct thread *td, struct setcontext_args *uap) +sys_setcontext(struct thread *td, struct setcontext_args *uap) { ucontext_t uc; int ret; @@ -100,7 +100,7 @@ setcontext(struct thread *td, struct setcontext_args *uap) } int -swapcontext(struct thread *td, struct swapcontext_args *uap) +sys_swapcontext(struct thread *td, struct swapcontext_args *uap) { ucontext_t uc; int ret; -- cgit v1.2.3