panic() cleanup.
[minix.git] / kernel / system / do_stime.c
blob8b1194faa5aef573e48caa8af5ba6957d37508e4
1 /* The kernel call implemented in this file:
2 * m_type: SYS_STIME
4 * The parameters for this kernel call are:
5 * m4_l3: T_BOOTTIME
6 */
8 #include "../system.h"
10 #include <minix/endpoint.h>
12 /*===========================================================================*
13 * do_stime *
14 *===========================================================================*/
15 PUBLIC int do_stime(struct proc * caller, message * m_ptr)
17 boottime= m_ptr->T_BOOTTIME;
18 return(OK);