kernel: restore stacktraces
[minix.git] / kernel / system / do_stime.c
blob3c1d1c822703831874930daee913638235857796
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 "kernel/system.h"
10 #include <minix/endpoint.h>
12 /*===========================================================================*
13 * do_stime *
14 *===========================================================================*/
15 int do_stime(struct proc * caller, message * m_ptr)
17 boottime= m_ptr->T_BOOTTIME;
18 return(OK);