Subversion Repositories HelenOS

Rev

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

Rev 2089 Rev 2725
Line 67... Line 67...
67
typedef struct {
67
typedef struct {
68
    count_t cpu_count;      /**< Number of processors detected. */
68
    count_t cpu_count;      /**< Number of processors detected. */
69
    volatile count_t cpu_active;    /**< Number of processors that are up and running. */
69
    volatile count_t cpu_active;    /**< Number of processors that are up and running. */
70
 
70
 
71
    uintptr_t base;
71
    uintptr_t base;
72
    size_t memory_size;     /**< Size of detected memory in bytes. */
-
 
73
    size_t kernel_size;     /**< Size of memory in bytes taken by kernel and stack */
72
    size_t kernel_size;     /**< Size of memory in bytes taken by kernel and stack */
74
   
73
   
75
    uintptr_t stack_base;       /**< Base adddress of initial stack */
74
    uintptr_t stack_base;       /**< Base adddress of initial stack */
76
    size_t stack_size;      /**< Size of initial stack */
75
    size_t stack_size;      /**< Size of initial stack */
77
} config_t;
76
} config_t;