We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eba461c + beee93f commit 39ccfc9Copy full SHA for 39ccfc9
std/src/sys/pal/unix/stack_overflow.rs
@@ -265,9 +265,7 @@ mod imp {
265
/// Modern kernels on modern hardware can have dynamic signal stack sizes.
266
#[cfg(any(target_os = "linux", target_os = "android"))]
267
fn sigstack_size() -> usize {
268
- // FIXME: reuse const from libc when available?
269
- const AT_MINSIGSTKSZ: crate::ffi::c_ulong = 51;
270
- let dynamic_sigstksz = unsafe { libc::getauxval(AT_MINSIGSTKSZ) };
+ let dynamic_sigstksz = unsafe { libc::getauxval(libc::AT_MINSIGSTKSZ) };
271
// If getauxval couldn't find the entry, it returns 0,
272
// so take the higher of the "constant" and auxval.
273
// This transparently supports older kernels which don't provide AT_MINSIGSTKSZ
0 commit comments