1998-03-07 19:24:35 +00:00
|
|
|
/*-
|
2017-11-27 15:25:02 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
1998-03-07 19:24:35 +00:00
|
|
|
* Copyright 1996-1998 John D. Polstra.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
*
|
1999-08-28 00:22:10 +00:00
|
|
|
* $FreeBSD$
|
1998-03-07 19:24:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Support for printing debugging messages.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEBUG_H
|
|
|
|
#define DEBUG_H 1
|
|
|
|
|
1999-09-04 20:36:27 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
1999-12-27 04:44:04 +00:00
|
|
|
#include <string.h>
|
2019-06-26 15:43:26 +00:00
|
|
|
#include "rtld_printf.h"
|
1999-12-27 04:44:04 +00:00
|
|
|
|
2019-04-14 18:04:53 +00:00
|
|
|
void debug_printf(const char *, ...) __printflike(1, 2);
|
1998-03-07 19:24:35 +00:00
|
|
|
extern int debug;
|
|
|
|
|
2019-04-14 18:04:53 +00:00
|
|
|
#ifndef NO_LD_DEBUG
|
2006-03-28 18:26:47 +00:00
|
|
|
#define dbg(...) debug_printf(__VA_ARGS__)
|
1998-03-07 19:24:35 +00:00
|
|
|
#else
|
2006-03-28 18:26:47 +00:00
|
|
|
#define dbg(...) ((void) 0)
|
1998-03-07 19:24:35 +00:00
|
|
|
#endif
|
|
|
|
|
2004-03-21 01:21:26 +00:00
|
|
|
#ifndef COMPAT_32BIT
|
|
|
|
#define _MYNAME "ld-elf.so.1"
|
|
|
|
#else
|
|
|
|
#define _MYNAME "ld-elf32.so.1"
|
|
|
|
#endif
|
|
|
|
|
1999-12-27 04:44:04 +00:00
|
|
|
#define assert(cond) ((cond) ? (void) 0 : \
|
2004-03-21 01:21:26 +00:00
|
|
|
(msg(_MYNAME ": assert failed: " __FILE__ ":" \
|
1999-12-27 04:44:04 +00:00
|
|
|
__XSTRING(__LINE__) "\n"), abort()))
|
2019-06-26 15:43:26 +00:00
|
|
|
#define msg(s) rtld_putstr(s)
|
2004-03-21 01:21:26 +00:00
|
|
|
#define trace() msg(_MYNAME ": " __XSTRING(__LINE__) "\n")
|
|
|
|
|
1999-12-27 04:44:04 +00:00
|
|
|
|
1998-03-07 19:24:35 +00:00
|
|
|
#endif /* DEBUG_H */
|