blob: 21e8fd56b831298f0ec07213896f26b0c69fb941 [file] [log] [blame]
Sylvain Munautac3e61a2010-07-25 18:08:54 +02001/* Panic handling */
2/*
3 * (C) 2010 by Sylvain Munaut <tnt@246tNt.com>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
Sylvain Munaut7f6615a2010-11-13 22:47:47 +010023#include <osmocore/gsm_utils.h>
Sylvain Munautac3e61a2010-07-25 18:08:54 +020024#include <osmocore/panic.h>
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +010025#include <osmocore/backtrace.h>
Sylvain Munautac3e61a2010-07-25 18:08:54 +020026
27#include "../config.h"
28
29
30static osmo_panic_handler_t osmo_panic_handler = (void*)0;
31
32
33#ifndef PANIC_INFLOOP
34
35#include <stdio.h>
36#include <stdlib.h>
37
38static void osmo_panic_default(const char *fmt, va_list args)
39{
40 vfprintf(stderr, fmt, args);
Sylvain Munaut7f6615a2010-11-13 22:47:47 +010041 generate_backtrace();
Sylvain Munautac3e61a2010-07-25 18:08:54 +020042 abort();
43}
44
45#else
46
47static void osmo_panic_default(const char *fmt, va_list args)
48{
49 while (1);
50}
51
52#endif
53
54
55void osmo_panic(const char *fmt, ...)
56{
57 va_list args;
58
59 va_start(args, fmt);
60
61 if (osmo_panic_handler)
62 osmo_panic_handler(fmt, args);
63 else
64 osmo_panic_default(fmt, args);
65
66 va_end(args);
67}
68
69
Sylvain Munautc91d17b2010-11-13 18:00:25 +010070void osmo_set_panic_handler(osmo_panic_handler_t h)
Sylvain Munautac3e61a2010-07-25 18:08:54 +020071{
72 osmo_panic_handler = h;
73}
74