misc: Put git-version-gen into the tarball
[osmocom-bb.git] / src / panic.c
1 /* 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
23 #include <osmocom/gsm/gsm_utils.h>
24 #include <osmocom/core/panic.h>
25 #include <osmocom/core/backtrace.h>
26
27 #include "../config.h"
28
29
30 static 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
38 static void osmo_panic_default(const char *fmt, va_list args)
39 {
40         vfprintf(stderr, fmt, args);
41         osmo_generate_backtrace();
42         abort();
43 }
44
45 #else
46
47 static void osmo_panic_default(const char *fmt, va_list args)
48 {
49         while (1);
50 }
51
52 #endif
53
54
55 void 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
70 void osmo_set_panic_handler(osmo_panic_handler_t h)
71 {
72         osmo_panic_handler = h;
73 }
74