xref: /minix3/minix/kernel/system/do_stime.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1*433d6423SLionel Sambuc /* The kernel call implemented in this file:
2*433d6423SLionel Sambuc  *   m_type:	SYS_STIME
3*433d6423SLionel Sambuc  *
4*433d6423SLionel Sambuc  * The parameters for this kernel call are:
5*433d6423SLionel Sambuc  *   m_lsys_krn_sys_stime.boot_time
6*433d6423SLionel Sambuc  */
7*433d6423SLionel Sambuc 
8*433d6423SLionel Sambuc #include "kernel/system.h"
9*433d6423SLionel Sambuc 
10*433d6423SLionel Sambuc #include <minix/endpoint.h>
11*433d6423SLionel Sambuc 
12*433d6423SLionel Sambuc /*===========================================================================*
13*433d6423SLionel Sambuc  *				do_stime				     *
14*433d6423SLionel Sambuc  *===========================================================================*/
15*433d6423SLionel Sambuc int do_stime(struct proc * caller, message * m_ptr)
16*433d6423SLionel Sambuc {
17*433d6423SLionel Sambuc   boottime = m_ptr->m_lsys_krn_sys_stime.boot_time;
18*433d6423SLionel Sambuc   return(OK);
19*433d6423SLionel Sambuc }
20