repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
retire 64-bit conversion functions
[minix3.git]
/
lib
/
libsys
/
sys_update.c
blob
c93845b62bf6ad0686793d0e4494f5aae45937ac
1
#include
"syslib.h"
2
3
int
sys_update
(
endpoint_t src_ep
,
endpoint_t dst_ep
)
4
{
5
message m
;
6
7
m
.
SYS_UPD_SRC_ENDPT
=
src_ep
;
8
m
.
SYS_UPD_DST_ENDPT
=
dst_ep
;
9
10
return
_kernel_call
(
SYS_UPDATE
, &
m
);
11
}