Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
ipc
/
ftok.c
blob: cd6002ed18ec2743220d028f5a0ee972ccc303a7 [
file
]
#include
<sys/ipc.h>
#include
<sys/stat.h>
key_t
ftok
(
const
char
*
path
,
int
id
)
{
struct
stat st
;
if
(
stat
(
path
,
&
st
)
<
0
)
return
-
1
;
return
((
st
.
st_ino
&
0xffff
)
|
((
st
.
st_dev
&
0xff
)
<<
16
)
|
((
id
&
0xff
)
<<
24
));
}