2007-08-20 06:58:56 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2007, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
|
2007-09-01 06:08:39 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2007-09-17 04:32:51 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#if defined __linux__ && defined __GNUC__
|
2007-08-20 06:58:56 +02:00
|
|
|
#include <execinfo.h>
|
2007-09-17 04:32:51 +02:00
|
|
|
#endif
|
2007-08-20 06:58:56 +02:00
|
|
|
|
2007-09-01 06:08:39 +02:00
|
|
|
void assert_fail(char const* expr, int line, char const* file, char const* function)
|
2007-08-20 06:58:56 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
fprintf(stderr, "assertion failed. Please file a bugreport at "
|
|
|
|
"http://code.rasterbar.com/libtorrent/newticket\n"
|
|
|
|
"Please include the following information:\n\n"
|
|
|
|
"file: '%s'\n"
|
|
|
|
"line: %d\n"
|
2007-09-01 06:08:39 +02:00
|
|
|
"function: %s\n"
|
|
|
|
"expression: %s\n"
|
|
|
|
"stack:\n", file, line, function, expr);
|
2007-08-20 06:58:56 +02:00
|
|
|
|
2007-09-17 04:32:51 +02:00
|
|
|
#if defined __linux__ && defined __GNUC__
|
2007-09-01 06:08:39 +02:00
|
|
|
void* stack[50];
|
2007-08-20 06:58:56 +02:00
|
|
|
int size = backtrace(stack, 50);
|
|
|
|
char** symbols = backtrace_symbols(stack, size);
|
|
|
|
|
|
|
|
for (int i = 0; i < size; ++i)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "%d: %s\n", i, symbols[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(symbols);
|
2007-09-17 04:32:51 +02:00
|
|
|
#endif
|
|
|
|
// send SIGINT to the current process
|
|
|
|
// to break into the debugger
|
|
|
|
raise(SIGINT);
|
|
|
|
abort();
|
2007-08-20 06:58:56 +02:00
|
|
|
}
|
|
|
|
|
2007-10-05 02:30:00 +02:00
|
|
|
#else
|
|
|
|
|
|
|
|
void assert_fail(char const* expr, int line, char const* file, char const* function) {}
|
|
|
|
|
2007-08-20 06:58:56 +02:00
|
|
|
#endif
|
|
|
|
|