genode/repos/base-linux/src/test/lx_hybrid_exception/main.cc

51 lines
1.0 KiB
C++

/*
* \brief Test if the exception mechanism works in hybrid applications
* \author Christian Prochaska
* \date 2011-11-22
*/
/*
* Copyright (C) 2011-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* Genode includes */
#include <base/component.h>
#include <base/log.h>
/* Linux includes */
#include <stdlib.h>
using namespace Genode;
class Test_exception { };
static int exit_status;
static void exit_on_suspended() { exit(exit_status); }
Genode::size_t Component::stack_size() { return 16*1024*sizeof(long); }
/*
* Component implements classical main function in construct.
*/
void Component::construct(Genode::Env &env)
{
log("--- lx_hybrid exception test ---");
try {
log("Throwing Test_exception");
throw Test_exception();
} catch (Test_exception) {
log("Caught Test_exception");
}
log("--- returning from main ---");
exit_status = 0;
env.ep().schedule_suspend(exit_on_suspended, nullptr);
}