genode/demo/src/app/launchpad/launcher.cc
2013-01-10 21:44:47 +01:00

29 lines
680 B
C++

/*
* \brief Support for launcher of the Genode programs via the Launchpad
* \author Norman Feske
* \date 2006-08-28
*/
/*
* Copyright (C) 2006-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.
*/
#include <launchpad/launchpad.h>
#include "elements.h"
#include "launcher_config.h"
/************************
** Launcher interface **
************************/
void Launcher::launch()
{
_launchpad->start_child(prg_name(), quota(),
_config ? _config->config_ds()
: Genode::Dataspace_capability());
}