hjl / source-git / glibc

Forked from source-git/glibc 3 years ago
Clone

Blame manual/examples/execinfo.c

Packit 6c4009
/* Obtain a backtrace and print it.
Packit 6c4009
   Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit 6c4009
Packit 6c4009
   This program is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU General Public License
Packit 6c4009
   as published by the Free Software Foundation; either version 2
Packit 6c4009
   of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   This program is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 6c4009
   GNU General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU General Public License
Packit 6c4009
   along with this program; if not, if not, see <http://www.gnu.org/licenses/>.
Packit 6c4009
*/
Packit 6c4009
Packit 6c4009
#include <execinfo.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include <stdlib.h>
Packit 6c4009
Packit 6c4009
/* Obtain a backtrace and print it to @code{stdout}. */
Packit 6c4009
void
Packit 6c4009
print_trace (void)
Packit 6c4009
{
Packit 6c4009
  void *array[10];
Packit 6c4009
  size_t size;
Packit 6c4009
  char **strings;
Packit 6c4009
  size_t i;
Packit 6c4009
Packit 6c4009
  size = backtrace (array, 10);
Packit 6c4009
  strings = backtrace_symbols (array, size);
Packit 6c4009
Packit 6c4009
  printf ("Obtained %zd stack frames.\n", size);
Packit 6c4009
Packit 6c4009
  for (i = 0; i < size; i++)
Packit 6c4009
     printf ("%s\n", strings[i]);
Packit 6c4009
Packit 6c4009
  free (strings);
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
/* A dummy function to make the backtrace more interesting. */
Packit 6c4009
void
Packit 6c4009
dummy_function (void)
Packit 6c4009
{
Packit 6c4009
  print_trace ();
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
main (void)
Packit 6c4009
{
Packit 6c4009
  dummy_function ();
Packit 6c4009
  return 0;
Packit 6c4009
}