tools/llvm: Do not build with symbols
[minix3.git] / minix / servers / pm / mcontext.c
blob6c88e97e13e181f996240c0085f96e0e389275dd
1 #include "pm.h"
2 #include <minix/callnr.h>
3 #include <minix/endpoint.h>
4 #include <minix/com.h>
5 #include <minix/vm.h>
6 #include "mproc.h"
9 /*===========================================================================*
10 * do_setmcontext *
11 *===========================================================================*/
12 int do_setmcontext()
14 return sys_setmcontext(who_e, m_in.m_lc_pm_mcontext.ctx);
18 /*===========================================================================*
19 * do_getmcontext *
20 *===========================================================================*/
21 int do_getmcontext()
23 return sys_getmcontext(who_e, m_in.m_lc_pm_mcontext.ctx);