Added sys_stime.c, T_CHILD_UTIME and T_CHILD_STIME are gone, should
change interface of sys_times.
This commit is contained in:
12
lib/syslib/sys_stime.c
Executable file
12
lib/syslib/sys_stime.c
Executable file
@@ -0,0 +1,12 @@
|
||||
#include "syslib.h"
|
||||
|
||||
PUBLIC int sys_stime(boottime)
|
||||
time_t boottime; /* New boottime */
|
||||
{
|
||||
message m;
|
||||
int r;
|
||||
|
||||
m.T_BOOTTIME = boottime;
|
||||
r = _taskcall(SYSTASK, SYS_STIME, &m);
|
||||
return(r);
|
||||
}
|
||||
Reference in New Issue
Block a user