1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Conditionalize some tests' use of SA_SIGINFO.

This commit is contained in:
Roland McGrath
2015-02-06 12:29:50 -08:00
parent 8272780608
commit cfa69b0bb2
4 changed files with 20 additions and 2 deletions

View File

@ -17,5 +17,12 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
#define SIGACTION_FLAGS SA_SIGINFO
#include <debug/tst-backtrace5.c>
#include <signal.h>
#ifdef SA_SIGINFO
# define SIGACTION_FLAGS SA_SIGINFO
# include <debug/tst-backtrace5.c>
#else
# define TEST_FUNCTION 0
# include "../test-skeleton.c"
#endif