From 484f39e1ba3ec9c9adaf53f6cacc3befb240ba1a Mon Sep 17 00:00:00 2001 From: gnzlbg <gonzalobg88@gmail.com> Date: Tue, 28 May 2019 16:13:16 +0200 Subject: [PATCH] Document SIGUNUSED deprecation on Android --- libc-test/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc-test/build.rs b/libc-test/build.rs index e35dcb4e..d828b9fe 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -1370,8 +1370,8 @@ fn test_android(target: &str) { // FIXME: still necessary? "SIG_DFL" | "SIG_ERR" | "SIG_IGN" => true, // sighandler_t weirdness - // FIXME: still necessary? - "SIGUNUSED" => true, // removed in glibc 2.26 + // FIXME: deprecated - removed in glibc 2.26 + "SIGUNUSED" => true, _ => false, } -- GitLab