Changes in kernel/arch/mips32/include/arch.h [a721f6a:98000fb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch.h
ra721f6a r98000fb 36 36 #define KERN_mips32_ARCH_H_ 37 37 38 #define TASKMAP_MAX_RECORDS 32 39 #define CPUMAP_MAX_RECORDS 32 40 41 #define BOOTINFO_TASK_NAME_BUFLEN 32 42 38 43 #include <typedefs.h> 39 40 #define TASKMAP_MAX_RECORDS 3241 #define CPUMAP_MAX_RECORDS 3242 #define BOOTINFO_TASK_NAME_BUFLEN 3243 44 44 45 extern size_t cpu_count; … … 46 47 typedef struct { 47 48 uintptr_t addr; 48 size_t size;49 uint32_t size; 49 50 char name[BOOTINFO_TASK_NAME_BUFLEN]; 50 51 } utask_t; … … 52 53 typedef struct { 53 54 uint32_t cpumap; 54 size_t cnt;55 uint32_t cnt; 55 56 utask_t tasks[TASKMAP_MAX_RECORDS]; 56 57 } bootinfo_t;
Note:
See TracChangeset
for help on using the changeset viewer.