mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
base-pistachio: Avoid warnings.
Avoid warnings in 'base-pistachio/src/core/platform_pd.cc' and 'base-pistachio/src/core/platform_thread.cc'. Fixes #479.
This commit is contained in:
parent
fb216f370b
commit
4794e97d80
@ -30,7 +30,7 @@ using namespace Genode;
|
||||
|
||||
static const bool verbose = false;
|
||||
|
||||
#define PT_DBG(args...) if (verbose) PDBG(args); else {}
|
||||
#define PT_DBG(args...) if (verbose) { PDBG(args); } else { }
|
||||
|
||||
|
||||
/**************************
|
||||
|
@ -36,7 +36,7 @@ using namespace Pistachio;
|
||||
static const bool verbose = false;
|
||||
static const bool verbose2 = true;
|
||||
|
||||
#define PT_DBG(args...) if (verbose) PDBG(args); else {}
|
||||
#define PT_DBG(args...) if (verbose) { PDBG(args); } else { }
|
||||
|
||||
|
||||
void Platform_thread::affinity(unsigned int cpu_no)
|
||||
|
Loading…
Reference in New Issue
Block a user