3 * \brief Kaluga Debug Macros
7 * Copyright (c) 2011, ETH Zurich.
10 * This file is distributed under the terms in the attached LICENSE file.
11 * If you do not find this file, copies can be found by writing to:
12 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
15 #ifndef KALUGA_DEBUG_H_
16 #define KALUGA_DEBUG_H_
18 #define KALUGA_SERVICE_DEBUG 1
20 #if defined(KALUGA_SERVICE_DEBUG) || defined(GLOBAL_DEBUG)
21 #define KALUGA_DEBUG(x...) debug_printf("kaluga: " x)
23 #define KALUGA_DEBUG(x...) ((void)0)
26 #endif // KALUGA_DEBUG_H_