genode/repos/demo/src/lib/mini_c/abort.cc

22 lines
420 B
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Mini C abort()
* \author Christian Helmuth
* \date 2008-07-24
*/
/*
* Copyright (C) 2008-2017 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 Affero General Public License version 3.
2011-12-22 16:19:25 +01:00
*/
#include <base/log.h>
2011-12-22 16:19:25 +01:00
#include <base/sleep.h>
extern "C" void abort(void)
2011-12-22 16:19:25 +01:00
{
Genode::warning("abort called");
2011-12-22 16:19:25 +01:00
Genode::sleep_forever();
}