mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-10 19:23:41 +01:00
Add copyright header.
(Test_Class): New dummy class so we can define a constructor. (backtrace): New function. 2003/03/27 16:03:18-08:00 mostang.com!davidm Rename: tests/test-init.cxx -> tests/Gtest-init.cxx (Logical change 1.70)
This commit is contained in:
parent
b5e1ca5a53
commit
a4ab1098ea
1 changed files with 102 additions and 0 deletions
|
@ -0,0 +1,102 @@
|
|||
/* libunwind - a platform-independent unwind library
|
||||
Copyright (C) 2002-2003 Hewlett-Packard Co
|
||||
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
|
||||
|
||||
This file is part of libunwind.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
|
||||
/* This file tests unwinding from a constructor from within an
|
||||
atexit() handler. */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <libunwind.h>
|
||||
|
||||
int errors;
|
||||
|
||||
#define panic(args...) \
|
||||
{ ++errors; fprintf (stderr, args); return; }
|
||||
|
||||
class Test_Class {
|
||||
public:
|
||||
Test_Class (void);
|
||||
};
|
||||
|
||||
static Test_Class t;
|
||||
|
||||
static void
|
||||
backtrace (void)
|
||||
{
|
||||
char name[128], off[32];
|
||||
unw_word_t ip, offset;
|
||||
unw_cursor_t cursor;
|
||||
unw_context_t uc;
|
||||
int ret, count = 0;
|
||||
|
||||
unw_getcontext (&uc);
|
||||
unw_init_local (&cursor, &uc);
|
||||
|
||||
do
|
||||
{
|
||||
unw_get_reg (&cursor, UNW_REG_IP, &ip);
|
||||
name[0] = '\0';
|
||||
off[0] = '\0';
|
||||
if (unw_get_proc_name (&cursor, name, sizeof (name), &offset) == 0
|
||||
&& off > 0)
|
||||
snprintf (off, sizeof (off), "+0x%lx", (long) offset);
|
||||
printf (" [%lx] <%s%s>\n", (long) ip, name, off);
|
||||
if (++count > 32)
|
||||
panic ("FAILURE: didn't reach beginning of unwind-chain\n");
|
||||
}
|
||||
while ((ret = unw_step (&cursor)) > 0);
|
||||
|
||||
if (ret < 0)
|
||||
panic ("FAILURE: unw_step() returned %d\n", ret);
|
||||
}
|
||||
|
||||
static void
|
||||
b (void)
|
||||
{
|
||||
backtrace();
|
||||
}
|
||||
|
||||
static void
|
||||
a (void)
|
||||
{
|
||||
printf ("backtrace() from atexit()-handler:\n");
|
||||
b();
|
||||
if (errors)
|
||||
abort (); /* cannot portably call exit() from an atexit() handler */
|
||||
}
|
||||
|
||||
Test_Class::Test_Class (void)
|
||||
{
|
||||
printf ("backtrace() from constructor:\n");
|
||||
b();
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
return atexit (a);
|
||||
}
|
Loading…
Reference in a new issue