blob: 7d7c10a80083b13d8b6e5e2e6467cb76d1dc0723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Copyright (c) 2013, The Tor Project, Inc. */
/* See LICENSE for licensing information */
#ifndef TOR_BACKTRACE_H
#define TOR_BACKTRACE_H
void dump_backtrace(const char *msg);
int configure_backtrace_handler(const char *tor_version);
void clean_up_backtrace_handler(void);
#endif
|