1 /* Copyright 1992-2019 Free Software Foundation, Inc.
3 This file is part of GDB.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* Simple little program that just generates a core dump from inside some
19 nested function calls. Keep this as self contained as possible, I.E.
20 use no environment resources other than possibly abort(). */
34 #define ABORT {char *invalid = 0; *invalid = 0xFF;}
38 # include <sys/resource.h>
39 # ifndef RLIM_INFINITY
40 # define RLIM_INFINITY -1
42 #endif /* USE_RLIMIT */
44 /* Don't make these automatic vars or we will have to walk back up the
45 stack to access them. */
50 int coremaker_data
= 1; /* In Data section */
51 int coremaker_bss
; /* In BSS section */
53 const int coremaker_ro
= 201; /* In Read-Only Data section */
58 int coremaker_local
[5];
64 struct rlimit rlim
= { RLIM_INFINITY
, RLIM_INFINITY
};
66 setrlimit (RLIMIT_CORE
, &rlim
);
70 /* Make sure that coremaker_local doesn't get optimized away. */
71 for (i
= 0; i
< 5; i
++)
72 coremaker_local
[i
] = i
;
74 for (i
= 0; i
< 5; i
++)
75 coremaker_bss
+= coremaker_local
[i
];
76 coremaker_data
= coremaker_ro
+ 1;