Subversion Repositories HelenOS

Rev

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

Rev 2128 Rev 2465
Line 1... Line 1...
1
/*
1
/*
2
 * Copyright (c) 2005 Jakub Jermar
2
 * Copyright (c) 2007 Pavel Jancik
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
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 declarations.
33
 */
34
 */
34
 
35
 
35
#ifndef KERN_arm32_MEMORY_INIT_H_
36
#ifndef KERN_arm32_MEMORY_INIT_H_
36
#define KERN_arm32_MEMORY_INIT_H_
37
#define KERN_arm32_MEMORY_INIT_H_
37
 
38
 
38
#include <config.h>
39
#include <config.h>
39
 
40
 
40
#define get_memory_size()   CONFIG_MEMORY_SIZE  /* TODO */
41
size_t get_memory_size(void);
41
 
42
 
42
#endif
43
#endif
43
 
44
 
44
/** @}
45
/** @}
45
 */
46
 */