make vfs & filesystems use failable copying
[minix3.git] / kernel / system / do_stime.c
blobdb6b6652a9679b96b486740610620719e3e1e87d
1 /* The kernel call implemented in this file:
2 * m_type: SYS_STIME
4 * The parameters for this kernel call are:
5 * m4_ll1: T_BOOTTIME
6 */
8 #include "kernel/system.h"
10 #include <minix/endpoint.h>
12 /*===========================================================================*
13 * do_stime *
14 *===========================================================================*/
15 int do_stime(struct proc * caller, message * m_ptr)
17 boottime= m_ptr->T_BOOTTIME;
18 return(OK);