L4Linux: make the l4lx library less verbose.

This commit is contained in:
Stefan Kalkowski 2012-07-31 14:40:27 +02:00 committed by Norman Feske
parent 3736b8b2f2
commit 5118b5e1e6
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ namespace Fiasco {
using namespace Fiasco;
static bool DEBUG = true;
static bool DEBUG = false;
extern "C" {

View File

@ -27,7 +27,7 @@ namespace Fiasco {
using namespace Fiasco;
static const bool DEBUG = true; /* print usage of region map functions */
static const bool DEBUG = false; /* print usage of region map functions */
static const bool DEBUG_FIND = false; /* print also usage of region map lookups */
enum {

View File

@ -25,7 +25,7 @@ namespace Fiasco {
using namespace Fiasco;
static const bool DEBUG = true;
static const bool DEBUG = false;
static l4re_env_t __l4re_env;
extern void* l4lx_kinfo;

View File

@ -116,7 +116,7 @@ Region* Region_manager::reserve_range(Genode::size_t size, int align,
Rm_connection *rmc = new (env()->heap()) Rm_connection(0, size);
addr = start ? env()->rm_session()->attach_at(rmc->dataspace(), start)
: env()->rm_session()->attach(rmc->dataspace());
PDBG("attach done addr=%p!", addr);
//PDBG("attach done addr=%p!", addr);
break;
} catch(Rm_session::Attach_failed e) {
PWRN("attach failed start=%lx", start);