File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
src/unix/bsd/netbsdlike/openbsd Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -412,6 +412,10 @@ KERN_TTYCOUNT
412
412
KERN_USERMOUNT
413
413
KERN_VERSION
414
414
KERN_WATCHDOG
415
+ KVE_PROT_EXEC
416
+ KVE_PROT_NONE
417
+ KVE_PROT_READ
418
+ KVE_PROT_WRITE
415
419
KI_EMULNAMELEN
416
420
KI_MAXCOMLEN
417
421
KI_MAXLOGNAME
Original file line number Diff line number Diff line change @@ -1372,6 +1372,11 @@ pub const KI_WMESGLEN: ::c_int = 8;
1372
1372
pub const KI_MAXLOGNAME : :: c_int = 32 ;
1373
1373
pub const KI_EMULNAMELEN : :: c_int = 8 ;
1374
1374
1375
+ pub const KVE_PROT_NONE : :: c_int = 0x00000000 ;
1376
+ pub const KVE_PROT_READ : :: c_int = 0x00000001 ;
1377
+ pub const KVE_PROT_WRITE : :: c_int = 0x00000002 ;
1378
+ pub const KVE_PROT_EXEC : :: c_int = 0x00000004 ;
1379
+
1375
1380
pub const CHWFLOW : :: tcflag_t = :: MDMBUF | :: CRTSCTS ;
1376
1381
pub const OLCUC : :: tcflag_t = 0x20 ;
1377
1382
pub const ONOCR : :: tcflag_t = 0x40 ;
You can’t perform that action at this time.
0 commit comments