Files
glibc/debug/execinfo.h
T

44 lines
1.5 KiB
C
Raw Normal View History

/* Copyright (C) 1998-2023 Free Software Foundation, Inc.
1998-06-08 19:06:31 +00:00
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 04:58:11 +00:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1998-06-08 19:06:31 +00:00
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2001-07-06 04:58:11 +00:00
Lesser General Public License for more details.
1998-06-08 19:06:31 +00:00
2001-07-06 04:58:11 +00:00
You should have received a copy of the GNU Lesser General Public
2012-02-09 23:18:22 +00:00
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
1998-06-08 19:06:31 +00:00
#ifndef _EXECINFO_H
#define _EXECINFO_H 1
#include <features.h>
__BEGIN_DECLS
/* Store up to SIZE return address of the current program state in
ARRAY and return the exact number of values stored. */
2004-10-22 21:08:43 +00:00
extern int backtrace (void **__array, int __size) __nonnull ((1));
1998-06-08 19:06:31 +00:00
/* Return names of functions from the backtrace list in ARRAY in a newly
malloc()ed memory block. */
2012-01-07 23:57:22 -05:00
extern char **backtrace_symbols (void *const *__array, int __size)
2004-09-17 19:27:08 +00:00
__THROW __nonnull ((1));
1998-06-08 19:06:31 +00:00
1998-07-16 20:08:44 +00:00
/* This function is similar to backtrace_symbols() but it writes the result
2005-10-31 15:25:14 +00:00
immediately to a file. */
2012-01-07 23:57:22 -05:00
extern void backtrace_symbols_fd (void *const *__array, int __size, int __fd)
2004-09-17 23:47:50 +00:00
__THROW __nonnull ((1));
1998-07-16 20:08:44 +00:00
1998-06-08 19:06:31 +00:00
__END_DECLS
#endif /* execinfo.h */