2007-08-07 14:20:31 +02:00
|
|
|
/* The kernel call implemented in this file:
|
|
|
|
* m_type: SYS_STIME
|
|
|
|
*
|
|
|
|
* The parameters for this kernel call are:
|
2009-12-30 15:56:54 +01:00
|
|
|
* m4_l3: T_BOOTTIME
|
2007-08-07 14:20:31 +02:00
|
|
|
*/
|
|
|
|
|
2010-04-02 00:22:33 +02:00
|
|
|
#include "kernel/system.h"
|
2007-08-07 14:20:31 +02:00
|
|
|
|
|
|
|
#include <minix/endpoint.h>
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* do_stime *
|
|
|
|
*===========================================================================*/
|
2010-02-03 10:04:48 +01:00
|
|
|
PUBLIC int do_stime(struct proc * caller, message * m_ptr)
|
2007-08-07 14:20:31 +02:00
|
|
|
{
|
|
|
|
boottime= m_ptr->T_BOOTTIME;
|
|
|
|
return(OK);
|
|
|
|
}
|