]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdbsupport/gdb_assert.h
gdb: Enable early init of thread pool size
[thirdparty/binutils-gdb.git] / gdbsupport / gdb_assert.h
CommitLineData
6751bfc9 1/* GDB-friendly replacement for <assert.h>.
213516ef 2 Copyright (C) 2000-2023 Free Software Foundation, Inc.
6751bfc9
MK
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
6751bfc9
MK
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
6751bfc9 18
1a5c2598
TT
19#ifndef COMMON_GDB_ASSERT_H
20#define COMMON_GDB_ASSERT_H
6751bfc9 21
70054538
CB
22#include "errors.h"
23
38266776
AC
24/* PRAGMATICS: "gdb_assert.h":gdb_assert() is a lower case (rather
25 than upper case) macro since that provides the closest fit to the
26 existing lower case macro <assert.h>:assert() that it is
0963b4bd 27 replacing. */
38266776 28
6751bfc9
MK
29#define gdb_assert(expr) \
30 ((void) ((expr) ? 0 : \
830070c6 31 (gdb_assert_fail (#expr, __FILE__, __LINE__, __func__), 0)))
6751bfc9 32
f3574227 33/* This prints an "Assertion failed" message, asking the user if they
6751bfc9 34 want to continue, dump core, or just exit. */
93ec1121 35#define gdb_assert_fail(assertion, file, line, function) \
f34652de
PA
36 internal_error_loc (file, line, _("%s: Assertion `%s' failed."), \
37 function, assertion)
6751bfc9 38
f3574227
DE
39/* The canonical form of gdb_assert (0).
40 MESSAGE is a string to include in the error message. */
41
557b4d76 42#define gdb_assert_not_reached(message, ...) \
f34652de
PA
43 internal_error_loc (__FILE__, __LINE__, _("%s: " message), __func__, \
44 ##__VA_ARGS__)
f3574227 45
1a5c2598 46#endif /* COMMON_GDB_ASSERT_H */