backtrace.h 311 B

123456789101112
  1. /* Copyright (c) 2013, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. #ifndef TOR_BACKTRACE_H
  4. #define TOR_BACKTRACE_H
  5. void log_backtrace(int severity, int domain, const char *msg);
  6. int configure_backtrace_handler(const char *tor_version);
  7. void clean_up_backtrace_handler(void);
  8. #endif