summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_proc.c')
-rw-r--r--sys/kern/kern_proc.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/sys/kern/kern_proc.c b/sys/kern/kern_proc.c
index afa53a5..b2fcae7 100644
--- a/sys/kern/kern_proc.c
+++ b/sys/kern/kern_proc.c
@@ -195,6 +195,51 @@ thread_get(struct proc *p)
return (td);
}
+
+/*********************
+* STUB KSE syscalls
+*********************/
+
+int
+thread_wakeup(struct thread *td, struct thread_wakeup_args *uap)
+/* struct thread_wakeup_args { struct thread_mailbox *tmbx; }; */
+{
+
+ return(EINVAL);
+}
+
+int
+kse_exit(struct thread *td, struct kse_exit_args *uap)
+{
+
+ return(EINVAL);
+}
+
+int
+kse_yield(struct thread *td, struct kse_yield_args *uap)
+{
+
+ return(EINVAL);
+}
+
+int kse_wakeup(struct thread *td, struct kse_wakeup_args *uap)
+{
+
+ return(EINVAL);
+}
+
+
+int
+kse_new(struct thread *td, struct kse_new_args *uap)
+/* struct kse_new_args {
+ struct kse_mailbox *mbx;
+ int new_grp_flag;
+}; */
+{
+
+ return (EINVAL);
+}
+
/*
* Is p an inferior of the current process?
*/
OpenPOWER on IntegriCloud