Commit ff17476 1 parent 67352ee commit ff17476 Copy full SHA for ff17476
File tree 5 files changed +7
-1
lines changed
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) {
4255
4255
| "F_SEAL_SEAL"
4256
4256
| "F_SEAL_SHRINK"
4257
4257
| "F_SEAL_GROW"
4258
- | "F_SEAL_WRITE" => true ,
4258
+ | "F_SEAL_WRITE"
4259
+ | "F_SEAL_FUTURE_WRITE"
4260
+ | "F_SEAL_EXEC" => true ,
4259
4261
// The `ARPHRD_CAN` is tested in the `linux_if_arp.rs` tests
4260
4262
// because including `linux/if_arp.h` causes some conflicts:
4261
4263
"ARPHRD_CAN" => true ,
Original file line number Diff line number Diff line change @@ -685,6 +685,7 @@ F_OFD_SETLK
685
685
F_OFD_SETLKW
686
686
F_OK
687
687
F_RDLCK
688
+ F_SEAL_EXEC
688
689
F_SEAL_GROW
689
690
F_SEAL_SEAL
690
691
F_SEAL_SHRINK
Original file line number Diff line number Diff line change @@ -864,6 +864,7 @@ F_OFD_GETLK
864
864
F_OFD_SETLK
865
865
F_OFD_SETLKW
866
866
F_RDLCK
867
+ F_SEAL_EXEC
867
868
F_SEAL_FUTURE_WRITE
868
869
F_SEAL_GROW
869
870
F_SEAL_SEAL
Original file line number Diff line number Diff line change @@ -1305,6 +1305,7 @@ pub const F_TLOCK: c_int = 2;
1305
1305
pub const F_ULOCK : c_int = 0 ;
1306
1306
1307
1307
pub const F_SEAL_FUTURE_WRITE : c_int = 0x0010 ;
1308
+ pub const F_SEAL_EXEC : c_int = 0x0020 ;
1308
1309
1309
1310
pub const IFF_LOWER_UP : c_int = 0x10000 ;
1310
1311
pub 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;
2770
2770
pub const F_ULOCK : c_int = 0 ;
2771
2771
2772
2772
pub const F_SEAL_FUTURE_WRITE : c_int = 0x0010 ;
2773
+ pub const F_SEAL_EXEC : c_int = 0x0020 ;
2773
2774
2774
2775
pub const IFF_LOWER_UP : c_int = 0x10000 ;
2775
2776
pub const IFF_DORMANT : c_int = 0x20000 ;
You can’t perform that action at this time.
0 commit comments