File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4486,6 +4486,9 @@ fn test_linux(target: &str) {
44864486 // FIXME(linux): Requires >= 6.9 kernel headers.
44874487 "AT_HWCAP3" | "AT_HWCAP4" => true ,
44884488
4489+ // Linux 6.14
4490+ "AT_EXECVE_CHECK" => true ,
4491+
44894492 _ => false ,
44904493 }
44914494 } ) ;
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ AT_ENTRY
163163AT_EUID
164164AT_EXECFD
165165AT_EXECFN
166+ AT_EXECVE_CHECK
166167AT_FDCWD
167168AT_FLAGS
168169AT_GID
Original file line number Diff line number Diff line change @@ -1420,6 +1420,9 @@ pub const IFF_LOWER_UP: c_int = 0x10000;
14201420pub const IFF_DORMANT : c_int = 0x20000 ;
14211421pub const IFF_ECHO : c_int = 0x40000 ;
14221422
1423+ // linux/fcntl.h
1424+ pub const AT_EXECVE_CHECK : c_int = 0x10000 ;
1425+
14231426// linux/if_addr.h
14241427pub const IFA_UNSPEC : c_ushort = 0 ;
14251428pub const IFA_ADDRESS : c_ushort = 1 ;
You can’t perform that action at this time.
0 commit comments