00001 /* 00002 * Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC") 00003 * 00004 * Permission to use, copy, modify, and/or distribute this software for any 00005 * purpose with or without fee is hereby granted, provided that the above 00006 * copyright notice and this permission notice appear in all copies. 00007 * 00008 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH 00009 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 00010 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, 00011 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 00012 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 00013 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 00014 * PERFORMANCE OF THIS SOFTWARE. 00015 */ 00016 00017 /* $Id: backtrace-emptytbl.c,v 1.3 2009/09/01 20:13:44 each Exp $ */ 00018 00019 /*! \file */ 00020 00021 /* 00022 * This file defines an empty (default) symbol table used in backtrace.c 00023 * If the application wants to have a complete symbol table, it should redefine 00024 * isc__backtrace_symtable with the complete table in some way, and link the 00025 * version of the library not including this definition 00026 * (e.g. libisc-nosymbol.a). 00027 */ 00028 00029 #include <config.h> 00030 00031 #include <isc/backtrace.h> 00032 00033 const int isc__backtrace_nsymbols = 0; 00034 const isc_backtrace_symmap_t isc__backtrace_symtable[] = { { NULL, "" } };