GetFEM  5.5
dal_backtrace.h
Go to the documentation of this file.
1 /* -*- c++ -*- (enables emacs c++ mode) */
2 /*===========================================================================
3 
4  Copyright (C) 1995-2026 Yves Renard
5 
6  This file is a part of GetFEM
7 
8  GetFEM is free software; you can redistribute it and/or modify it
9  under the terms of the GNU Lesser General Public License as published
10  by the Free Software Foundation; either version 3 of the License, or
11  (at your option) any later version along with the GCC Runtime Library
12  Exception either version 3.1 or (at your option) any later version.
13  This program is distributed in the hope that it will be useful, but
14  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  License and GCC Runtime Library Exception for more details.
17  You should have received a copy of the GNU Lesser General Public License
18  along with this program. If not, see https://www.gnu.org/licenses/.
19 
20  As a special exception, you may use this file as it is a part of a free
21  software library without restriction. Specifically, if other files
22  instantiate templates or use macros or inline functions from this file,
23  or you compile this file and link it with other files to produce an
24  executable, this file does not by itself cause the resulting executable
25  to be covered by the GNU Lesser General Public License. This exception
26  does not however invalidate any other reasons why the executable file
27  might be covered by the GNU Lesser General Public License.
28 
29 ===========================================================================*/
30 
31 /**@file dal_backtrace.h
32  @author Julien Pommier <Julien.Pommier@insa-toulouse.fr>
33  @date June 01, 2003.
34  @brief Get debug information.
35 */
36 #ifndef DAL_BACKTRACE
37 #define DAL_BACKTRACE
38 
39 #include "getfem/getfem_arch_config.h"
40 #include <cstdio>
41 #include <cstdlib>
42 #include <cstring>
43 #include <string>
44 
45 
46 namespace dal {
47  std::string demangle(const char *mangled_name);
48  inline void dump_backtrace() {
49 #ifdef GETFEM_HAVE_BACKTRACE
50  void dump_glibc_backtrace();
51  dump_glibc_backtrace();
52 #endif
53  }
54 }
55 
56 #endif
Dynamic Array Library.