File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ impl okf::Kernel for Kernel {
39
39
const ACCEPT_MTX : StaticMut < Self :: Mtx > ;
40
40
const EINTR : NonZero < c_int > = unsafe { NonZero :: new_unchecked ( 4 ) } ;
41
41
const EIO : NonZero < c_int > = unsafe { NonZero :: new_unchecked ( 5 ) } ;
42
+ const LK_EXCLUSIVE : c_int = 0x80000 ;
42
43
#[ offset( 0x15415B0 ) ]
43
44
const M_TEMP : StaticMut < Self :: Malloc > ;
44
45
const MBF_MNTLSTLOCK : c_int = 2 ;
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ pub trait Kernel: MappedKernel {
50
50
const ACCEPT_MTX : StaticMut < Self :: Mtx > ;
51
51
const EINTR : NonZero < c_int > ;
52
52
const EIO : NonZero < c_int > ;
53
+ const LK_EXCLUSIVE : c_int ;
53
54
const M_TEMP : StaticMut < Self :: Malloc > ;
54
55
const MBF_MNTLSTLOCK : c_int ;
55
56
const MBF_NOWAIT : c_int ;
You can’t perform that action at this time.
0 commit comments