merging in memory freeer.
[minix3.git] / kernel / system / do_stime.c
blob9b8510f4061914c498e18afba700ee57fecd2097
1 /* The kernel call implemented in this file:
2 * m_type: SYS_STIME
4 * The parameters for this kernel call are:
5 * m2_l1: T_BOOTITME
6 */
8 #include "../system.h"
10 #include <minix/endpoint.h>
12 /*===========================================================================*
13 * do_stime *
14 *===========================================================================*/
15 PUBLIC int do_stime(m_ptr)
16 register message *m_ptr; /* pointer to request message */
18 boottime= m_ptr->T_BOOTTIME;
19 return(OK);