Subversion Repositories HelenOS

Rev

Rev 2361 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2361 Rev 2410
Line 28... Line 28...
28
 
28
 
29
/** @addtogroup arm32mm
29
/** @addtogroup arm32mm
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
-
 
33
 *  @brief Memory information functions.
33
 */
34
 */
34
 
35
 
35
#include <arch/mm/memory_init.h>
36
#include <arch/mm/memory_init.h>
36
#include <arch/mm/page.h>
37
#include <arch/mm/page.h>
37
#include <arch/machine.h>
38
#include <arch/machine.h>
38
 
39
 
39
/** Determine instaled memory size
40
/** Determine instaled memory size
40
 *
41
 *
41
 * @returm Memory size in bytes
42
 * @return Memory size in bytes
42
 */
43
 */
43
size_t get_memory_size(void)
44
size_t get_memory_size(void)
44
{
45
{
45
    return  machine_get_memory_size();
46
    return  machine_get_memory_size();
46
}
47
}