From: Tomas Hruby Date: Tue, 9 Feb 2010 15:36:29 +0000 (+0000) Subject: And of course, as much as I've tried to be careful I forgot to add this file in X-Git-Tag: v3.1.7~295 X-Git-Url: http://zhaoyanbai.com/repos/doxygen-warnings.log?a=commitdiff_plain;h=d845891a50cd21e7c491cc886788a272b69f8fab;p=minix.git And of course, as much as I've tried to be careful I forgot to add this file in r6116 :( --- 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); +}