1 /* Test of c-stack module.
2 Copyright (C) 2002, 2004, 2006, 2008-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
24 /* At least FreeBSD 5.0 needs extra headers before <sys/resource.h>
26 # include <sys/types.h>
27 # include <sys/time.h>
28 # include <sys/resource.h>
34 recurse_1 (volatile int n
, volatile int *p
)
37 *recurse_1 (n
+ 1, p
) += n
;
42 recurse (volatile int n
)
45 return *recurse_1 (n
, &sum
);
49 main (int argc
, char **argv
)
51 #if HAVE_SETRLIMIT && defined RLIMIT_STACK
52 /* Before starting the endless recursion, try to be friendly to the
53 user's machine. On some Linux 2.2.x systems, there is no stack
54 limit for user processes at all. We don't want to kill such
57 rl
.rlim_cur
= rl
.rlim_max
= 0x100000; /* 1 MB */
58 setrlimit (RLIMIT_STACK
, &rl
);
61 if (c_stack_action (NULL
) == 0)
66 ++*argv
[argc
]; /* Intentionally dereference NULL. */
70 fputs ("skipping test: ", stderr
);
71 perror ("c_stack_action");