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
arm: protect state after signal handler
[minix.git]
/
lib
/
libsys
/
sys_stime.c
blob
e2b2bb5874289b1c3ab7129f09ee49265a32a717
1
#include
"syslib.h"
2
3
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
=
_kernel_call
(
SYS_STIME
, &
m
);
11
return
(
r
);
12
}