genode/repos/base/include/base/stdint.h
Norman Feske eaac3cc1bd Revised API documentation
This patch curates the API documentation to become suitable for the
functional specificaton, which is partially generated from the header
files.
2015-04-09 16:04:46 +02:00

44 lines
822 B
C++

/*
* \brief Integer types
* \author Christian Helmuth
* \date 2006-05-10
*/
/*
* 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.
*/
#ifndef _INCLUDE__BASE__STDINT_H_
#define _INCLUDE__BASE__STDINT_H_
/* fixed-width integer types */
#include <base/fixed_stdint.h>
namespace Genode {
/**
* Integer type for non-negative size values
*/
typedef __SIZE_TYPE__ size_t;
/**
* Integer type for memory addresses
*/
typedef unsigned long addr_t;
/**
* Integer type for memory offset values
*/
typedef long off_t;
/**
* Integer type corresponding to a machine register
*/
typedef unsigned long umword_t;
}
#endif /* _INCLUDE__BASE__STDINT_H_ */