base: remove debug message from Allocator_guard

This commit is contained in:
Alexander Boettcher 2018-01-19 10:19:48 +01:00 committed by Norman Feske
parent e6b87e9d20
commit a9a8c65f53
1 changed files with 2 additions and 6 deletions

View File

@ -15,7 +15,6 @@
#define _INCLUDE__BASE__ALLOCATOR_GUARD_H_
#include <base/allocator.h>
#include <base/log.h>
#include <base/stdint.h>
namespace Genode { class Allocator_guard; }
@ -76,12 +75,9 @@ class Genode::Allocator_guard : public Allocator
*/
bool alloc(size_t size, void **out_addr) override
{
if ((_amount - _consumed) < (size + _allocator->overhead(size))) {
warning("Quota exceeded! amount=", _amount,
", size=", (size + _allocator->overhead(size)),
", consumed=", _consumed);
if ((_amount - _consumed) < (size + _allocator->overhead(size)))
return false;
}
bool const b = _allocator->alloc(size, out_addr);
if (b)
_consumed += size + _allocator->overhead(size);