2007-08-07 14:04:29 +02:00
|
|
|
#include "syslib.h"
|
|
|
|
|
2012-03-25 20:25:53 +02:00
|
|
|
int sys_stime(boottime)
|
2007-08-07 14:04:29 +02:00
|
|
|
time_t boottime; /* New boottime */
|
|
|
|
{
|
|
|
|
message m;
|
|
|
|
int r;
|
|
|
|
|
2014-05-22 15:30:51 +02:00
|
|
|
m.m_lsys_krn_sys_stime.boot_time = boottime;
|
2010-02-09 16:20:09 +01:00
|
|
|
r = _kernel_call(SYS_STIME, &m);
|
2007-08-07 14:04:29 +02:00
|
|
|
return(r);
|
|
|
|
}
|