]> Savannah Git Hosting - gnulib.git/commitdiff
pselect: Disable signature check on AIX.
authorCollin Funk <collin.funk1@gmail.com>
Sat, 26 Apr 2025 01:02:51 +0000 (18:02 -0700)
committerBruno Haible <bruno@clisp.org>
Sat, 3 May 2025 14:07:28 +0000 (16:07 +0200)
* tests/test-pselect.c [_AIX]: Skip pselect signature check.

ChangeLog
tests/test-pselect.c

index 19f3b0c31dc8411c749914b6668465ad007197b1..e81cd5dd5ba1995822e700dee0da9dceb8c12c9f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2025-04-25  Collin Funk  <collin.funk1@gmail.com>
+
+       pselect: Disable signature check on AIX.
+       * tests/test-pselect.c [_AIX]: Skip pselect signature check.
+
 2025-04-24  Bruno Haible  <bruno@clisp.org>
 
        fbufmode: Don't require peeking into the FILE structure on recent Haiku.
index 82b23362157c5329dd5a0cfefd389a2b24355929..eef7a0f5a23f52c163888691444a506002dca3b4 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of pselect() substitute.
-   Copyright (C) 2011-2024 Free Software Foundation, Inc.
+   Copyright (C) 2011-2025 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 #include "signature.h"
 
+#if !defined _AIX
 SIGNATURE_CHECK (pselect, int,
                  (int, fd_set *restrict, fd_set *restrict, fd_set *restrict,
                   struct timespec const *restrict, const sigset_t *restrict));
+#endif
 
 #define TEST_PORT 12347
 #include "test-select.h"