Subversion Repositories HelenOS-historic

Rev

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

Rev 482 Rev 483
Line 33... Line 33...
33
#include <typedefs.h>
33
#include <typedefs.h>
34
#include <arch/mm/page.h>
34
#include <arch/mm/page.h>
35
 
35
 
36
#define STACK_SIZE      PAGE_SIZE
36
#define STACK_SIZE      PAGE_SIZE
37
 
37
 
38
#define CONFIG_MEMORY_SIZE  8*1024*1024
38
#define CONFIG_MEMORY_SIZE  (8*1024*1024)
39
#define CONFIG_HEAP_SIZE    300*1024
39
#define CONFIG_HEAP_SIZE    (300*1024)
40
#define CONFIG_STACK_SIZE   STACK_SIZE
40
#define CONFIG_STACK_SIZE   STACK_SIZE
41
 
41
 
42
struct config {
42
struct config {
43
    __address base;
43
    __address base;
44
    size_t memory_size;
44
    size_t memory_size;