Subversion Repositories HelenOS

Rev

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

Rev 2294 Rev 2361
Line 34... Line 34...
34
 
34
 
35
#include <arch/mm/memory_init.h>
35
#include <arch/mm/memory_init.h>
36
#include <arch/mm/page.h>
36
#include <arch/mm/page.h>
37
#include <arch/machine.h>
37
#include <arch/machine.h>
38
 
38
 
-
 
39
/** Determine instaled memory size
-
 
40
 *
-
 
41
 * @returm Memory size in bytes
-
 
42
 */
39
size_t get_memory_size(void)
43
size_t get_memory_size(void)
40
{
44
{
41
    return  machine_get_memory_size();
45
    return  machine_get_memory_size();
42
}
46
}
43
 
47