From d845891a50cd21e7c491cc886788a272b69f8fab Mon Sep 17 00:00:00 2001 From: Tomas Hruby Date: Tue, 9 Feb 2010 15:36:29 +0000 Subject: [PATCH] And of course, as much as I've tried to be careful I forgot to add this file in r6116 :( --- lib/syslib/kernel_call.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/syslib/kernel_call.c diff --git a/lib/syslib/kernel_call.c b/lib/syslib/kernel_call.c new file mode 100644 index 000000000..04f2b0f86 --- /dev/null +++ b/lib/syslib/kernel_call.c @@ -0,0 +1,11 @@ +#include +#include + +PUBLIC int _kernel_call(int syscallnr, message *msgptr) +{ + int status; + + msgptr->m_type = syscallnr; + _do_kernel_call(msgptr); + return(msgptr->m_type); +} -- 2.44.0