genode/base/src/base/cxx/new_delete.cc

36 lines
743 B
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief New and delete are special
* \author Norman Feske
* \date 2006-04-07
*/
/*
2012-01-03 15:35:05 +01:00
* Copyright (C) 2006-2012 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#include <base/printf.h>
#include <base/allocator.h>
/**
* New operator for allocating from a specified allocator
*/
void *operator new(Genode::size_t size, Genode::Allocator *allocator)
{
if (!allocator)
throw Genode::Allocator::Out_of_memory();
return allocator->alloc(size);
}
void *operator new [] (Genode::size_t size, Genode::Allocator *allocator)
{
if (!allocator)
throw Genode::Allocator::Out_of_memory();
return allocator->alloc(size);
}