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