Remove base/debug.h

Fixes #4765
This commit is contained in:
Norman Feske 2023-02-21 14:15:08 +01:00 committed by Christian Helmuth
parent bdf47785b8
commit e09941f310
5 changed files with 2 additions and 30 deletions

View File

@ -1,24 +0,0 @@
/*
* \brief Debugging output function
* \author Emery Hemingway
* \date 2016-10-13
*/
/*
* Copyright (C) 2016-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__BASE__DEBUG_H_
#define _INCLUDE__BASE__DEBUG_H_
#ifndef GENODE_RELEASE
#include <base/log.h>
#define PDBG(...) \
Genode::log("\033[33m", __PRETTY_FUNCTION__, "\033[0m ", ##__VA_ARGS__)
#endif /* GENODE_RELEASE */
#endif /* _INCLUDE__BASE__DEBUG_H_ */

View File

@ -14,7 +14,6 @@
/* Genode includes */
#include <base/attached_dataspace.h>
#include <base/debug.h>
#include <base/heap.h>
#include <base/log.h>
#include <gpu_session/connection.h>

View File

@ -14,7 +14,6 @@
/* Genode includes */
#include <base/attached_dataspace.h>
#include <base/debug.h>
#include <base/heap.h>
#include <base/log.h>
#include <gpu_session/connection.h>

View File

@ -17,7 +17,6 @@
#include <qemu_emul.h>
#include <hw/usb.h>
#include <extern_c_end.h>
#include <base/debug.h>
using namespace Genode;

View File

@ -28,7 +28,6 @@
#include <base/attached_dataspace.h>
#include <base/heap.h>
#include <base/debug.h>
#include <gui_session/connection.h>
#include <libc/component.h>
#include <libc/args.h>
@ -106,7 +105,7 @@ void _eglutNativeInitDisplay()
void _eglutNativeFiniDisplay(void)
{
PDBG("not implemented");
Genode::warning(__PRETTY_FUNCTION__, " not implemented");
}
@ -123,7 +122,7 @@ void _eglutNativeInitWindow(struct eglut_window *win, const char *title,
void _eglutNativeFiniWindow(struct eglut_window *win)
{
PDBG("not implemented");
Genode::warning(__PRETTY_FUNCTION__, " not implemented");
}