Subversion Repositories HelenOS-historic

Rev

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

Rev 1 Rev 102
Line 36... Line 36...
36
#define CONFIG_HEAP_SIZE    300*1024
36
#define CONFIG_HEAP_SIZE    300*1024
37
#define CONFIG_STACK_SIZE   32*1024
37
#define CONFIG_STACK_SIZE   32*1024
38
 
38
 
39
struct config {
39
struct config {
40
    __address base;
40
    __address base;
41
    __u32 memory_size;
41
    size_t memory_size;
42
    __u32 kernel_size;
42
    size_t kernel_size;
43
 
43
 
44
    int cpu_count;
44
    count_t cpu_count;
45
    volatile int cpu_active;
45
    volatile count_t cpu_active;
46
};
46
};
47
 
47
 
48
extern config_t config;
48
extern config_t config;
49
 
49
 
50
#endif
50
#endif