Skip to content

Commit 9090c00

Browse files
committed
Add constant AT_MINSIGSTKSZ introduced by glibc 2.35
1 parent acc7bb1 commit 9090c00

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ AT_GID
169169
AT_HWCAP
170170
AT_HWCAP2
171171
AT_IGNORE
172+
AT_MINSIGSTKSZ
172173
AT_NOTELF
173174
AT_NO_AUTOMOUNT
174175
AT_NULL

src/unix/linux_like/linux/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2220,6 +2220,7 @@ pub const AT_EXECFN: ::c_ulong = 31;
22202220
// defined in arch/<arch>/include/uapi/asm/auxvec.h but has the same value
22212221
// wherever it is defined.
22222222
pub const AT_SYSINFO_EHDR: ::c_ulong = 33;
2223+
pub const AT_MINSIGSTKSZ: ::c_ulong = 51;
22232224

22242225
pub const GLOB_ERR: ::c_int = 1 << 0;
22252226
pub const GLOB_MARK: ::c_int = 1 << 1;

0 commit comments

Comments
 (0)