repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move benchmarks to their own dir.
[minix.git]
/
lib
/
syslib
/
sys_stime.c
blob
9a9cffe0187933b214d255d8c6df700c8836ec5d
1
#include
"syslib.h"
2
3
PUBLIC
int
sys_stime
(
boottime
)
4
time_t
boottime
;
/* New boottime */
5
{
6
message m
;
7
int
r
;
8
9
m
.
T_BOOTTIME
=
boottime
;
10
r
=
_taskcall
(
SYSTASK
,
SYS_STIME
, &
m
);
11
return
(
r
);
12
}