mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
29 lines
584 B
C
29 lines
584 B
C
|
/*
|
||
|
* \brief Native extensions of the Genode environment
|
||
|
* \author Stefan Kalkowski
|
||
|
* \date 2015-05-20
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2015 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef _BASE__NATIVE_ENV_H_
|
||
|
#define _BASE__NATIVE_ENV_H_
|
||
|
|
||
|
/* Genode includes */
|
||
|
#include <base/stdint.h>
|
||
|
|
||
|
namespace Genode
|
||
|
{
|
||
|
/**
|
||
|
* Upgrade quota of the PD session within my Genode environment
|
||
|
*/
|
||
|
void upgrade_pd_session_quota(Genode::size_t);
|
||
|
};
|
||
|
|
||
|
#endif /**_BASE__NATIVE_ENV_H_ */
|