mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
34 lines
685 B
C
34 lines
685 B
C
/*
|
|
* \brief Debugging support
|
|
* \author Christian Helmuth
|
|
* \date 2008-08-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2008-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__DDE_KIT__PANIC_H_
|
|
#define _INCLUDE__DDE_KIT__PANIC_H_
|
|
|
|
/**
|
|
* Print message and block
|
|
*
|
|
* \param fmt message format string
|
|
*/
|
|
void dde_kit_panic(const char *fmt, ...);
|
|
|
|
/**
|
|
* Print debug message and block
|
|
*
|
|
* \param fmt message format string
|
|
*
|
|
* Logs the debug message with appended newline.
|
|
*/
|
|
void dde_kit_debug(const char *fmt, ...);
|
|
|
|
#endif /* _INCLUDE__DDE_KIT__PANIC_H_ */
|