mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
Improve consistency with the other base repositories, in particular - Indentation of class initializers - Vertical whitespace around control-flow statements - Preferably place control-flow statements (return, break, continue) at beginning of a line - Placing the opening brace of a namespace at the end of line - Placing the opening brace of a class at a new line - Removing superfluous braces around single statements - Two empty lines between methods/functions in implementation files
27 lines
603 B
C++
27 lines
603 B
C++
/*
|
|
* \brief Interface between kernel and userland
|
|
* \author Sebastian Sumpf
|
|
* \date 2015-06-02
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _KERNEL__INTERFACE_SUPPORT_H_
|
|
#define _KERNEL__INTERFACE_SUPPORT_H_
|
|
|
|
/* Genode includes */
|
|
#include <base/stdint.h>
|
|
|
|
namespace Kernel {
|
|
typedef Genode::uint64_t Call_arg;
|
|
typedef Genode::uint64_t Call_ret;
|
|
typedef Genode::uint64_t Call_ret_64;
|
|
}
|
|
|
|
#endif /* _KERNEL__INTERFACE_SUPPORT_H_ */
|