]> git.ipfire.org Git - thirdparty/gcc.git/blame - libbacktrace/nounwind.c
aarch64: Add rcpc3 dependency on rcpc2 and rcpc
[thirdparty/gcc.git] / libbacktrace / nounwind.c
CommitLineData
eff02e4f 1/* backtrace.c -- Entry point for stack backtrace library.
a945c346 2 Copyright (C) 2012-2024 Free Software Foundation, Inc.
eff02e4f
ILT
3 Written by Ian Lance Taylor, Google.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are
7met:
8
9 (1) Redistributions of source code must retain the above copyright
84ebf639 10 notice, this list of conditions and the following disclaimer.
eff02e4f
ILT
11
12 (2) Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the
84ebf639
CL
15 distribution.
16
eff02e4f
ILT
17 (3) The name of the author may not be used to
18 endorse or promote products derived from this software without
19 specific prior written permission.
20
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31POSSIBILITY OF SUCH DAMAGE. */
32
33#include "config.h"
34
35#include <sys/types.h>
36
37#include "backtrace.h"
38
39#include "internal.h"
40
41/* This source file is compiled if the unwind library is not
42 available. */
43
44int
c5812e0b
ILT
45backtrace_full (struct backtrace_state *state ATTRIBUTE_UNUSED,
46 int skip ATTRIBUTE_UNUSED,
47 backtrace_full_callback callback ATTRIBUTE_UNUSED,
48 backtrace_error_callback error_callback, void *data)
eff02e4f
ILT
49{
50 error_callback (data,
51 "no stack trace because unwind library not available",
52 0);
53 return 0;
54}
55
56int
e8f4008a
GP
57backtrace_simple (struct backtrace_state *state ATTRIBUTE_UNUSED,
58 int skip ATTRIBUTE_UNUSED,
eff02e4f
ILT
59 backtrace_simple_callback callback ATTRIBUTE_UNUSED,
60 backtrace_error_callback error_callback, void *data)
61{
62 error_callback (data,
63 "no stack trace because unwind library not available",
64 0);
65 return 0;
66}