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
412412KERN_USERMOUNT
413413KERN_VERSION
414414KERN_WATCHDOG
415+ KVE_PROT_EXEC
416+ KVE_PROT_NONE
417+ KVE_PROT_READ
418+ KVE_PROT_WRITE
415419KI_EMULNAMELEN
416420KI_MAXCOMLEN
417421KI_MAXLOGNAME
Original file line number Diff line number Diff line change @@ -1372,6 +1372,11 @@ pub const KI_WMESGLEN: ::c_int = 8;
13721372pub const KI_MAXLOGNAME : :: c_int = 32 ;
13731373pub const KI_EMULNAMELEN : :: c_int = 8 ;
13741374
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+
13751380pub const CHWFLOW : :: tcflag_t = :: MDMBUF | :: CRTSCTS ;
13761381pub const OLCUC : :: tcflag_t = 0x20 ;
13771382pub const ONOCR : :: tcflag_t = 0x40 ;
You can’t perform that action at this time.
0 commit comments