3.1.7 branch.
[minix.git] / kernel / system / do_stime.c
blob2e73be8b5d9480e4ba1837b18c82e79f82e04d9b
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 PUBLIC int do_stime(struct proc * caller, message * m_ptr)
17 boottime= m_ptr->T_BOOTTIME;
18 return(OK);