Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/config.h

    r32817cc r26aafe8  
    5353
    5454typedef struct {
    55         uintptr_t paddr;
     55        uintptr_t addr;
    5656        size_t size;
    5757        char name[CONFIG_TASK_NAME_BUFLEN];
     
    7474
    7575typedef struct {
    76         /** Number of processors detected. */
    77         unsigned int cpu_count;
    78         /** Number of processors that are up and running. */
    79         volatile size_t cpu_active;
     76        unsigned int cpu_count;      /**< Number of processors detected. */
     77        volatile size_t cpu_active;  /**< Number of processors that are up and running. */
    8078       
    8179        uintptr_t base;
    82         /** Size of memory in bytes taken by kernel and stack. */
    83         size_t kernel_size;
     80        size_t kernel_size;          /**< Size of memory in bytes taken by kernel and stack */
    8481       
    85         /** Base adddress of initial stack. */
    86         uintptr_t stack_base;
    87         /** Size of initial stack. */
    88         size_t stack_size;
    89 
    90         bool identity_configured;
    91         /** Base address of the kernel identity mapped memory. */
    92         uintptr_t identity_base;
    93         /** Size of the kernel identity mapped memory. */
    94         size_t identity_size;
    95 
    96         bool non_identity_configured;   
    97 
    98         /** End of physical memory. */
    99         uint64_t physmem_end;
     82        uintptr_t stack_base;        /**< Base adddress of initial stack */
     83        size_t stack_size;           /**< Size of initial stack */
    10084} config_t;
    10185
Note: See TracChangeset for help on using the changeset viewer.