File tree Expand file tree Collapse file tree 5 files changed +7
-1
lines changed Expand file tree Collapse file tree 5 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4255,7 +4255,9 @@ fn test_linux(target: &str) {
42554255 | "F_SEAL_SEAL"
42564256 | "F_SEAL_SHRINK"
42574257 | "F_SEAL_GROW"
4258- | "F_SEAL_WRITE" => true ,
4258+ | "F_SEAL_WRITE"
4259+ | "F_SEAL_FUTURE_WRITE"
4260+ | "F_SEAL_EXEC" => true ,
42594261 // The `ARPHRD_CAN` is tested in the `linux_if_arp.rs` tests
42604262 // because including `linux/if_arp.h` causes some conflicts:
42614263 "ARPHRD_CAN" => true ,
Original file line number Diff line number Diff line change @@ -685,6 +685,7 @@ F_OFD_SETLK
685685F_OFD_SETLKW
686686F_OK
687687F_RDLCK
688+ F_SEAL_EXEC
688689F_SEAL_GROW
689690F_SEAL_SEAL
690691F_SEAL_SHRINK
Original file line number Diff line number Diff line change @@ -864,6 +864,7 @@ F_OFD_GETLK
864864F_OFD_SETLK
865865F_OFD_SETLKW
866866F_RDLCK
867+ F_SEAL_EXEC
867868F_SEAL_FUTURE_WRITE
868869F_SEAL_GROW
869870F_SEAL_SEAL
Original file line number Diff line number Diff line change @@ -1305,6 +1305,7 @@ pub const F_TLOCK: c_int = 2;
13051305pub const F_ULOCK : c_int = 0 ;
13061306
13071307pub const F_SEAL_FUTURE_WRITE : c_int = 0x0010 ;
1308+ pub const F_SEAL_EXEC : c_int = 0x0020 ;
13081309
13091310pub const IFF_LOWER_UP : c_int = 0x10000 ;
13101311pub const IFF_DORMANT : c_int = 0x20000 ;
Original file line number Diff line number Diff line change @@ -2770,6 +2770,7 @@ pub const F_TLOCK: c_int = 2;
27702770pub const F_ULOCK : c_int = 0 ;
27712771
27722772pub const F_SEAL_FUTURE_WRITE : c_int = 0x0010 ;
2773+ pub const F_SEAL_EXEC : c_int = 0x0020 ;
27732774
27742775pub const IFF_LOWER_UP : c_int = 0x10000 ;
27752776pub const IFF_DORMANT : c_int = 0x20000 ;
You can’t perform that action at this time.
0 commit comments