Changeset 245 for soft/giet_vm/boot/boot_init.c
- Timestamp:
- Jun 17, 2013, 11:38:40 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/boot/boot_init.c
r240 r245 89 89 90 90 // Page table addresses arrays 91 __attribute__((section (".wdata"))) 91 92 paddr_t boot_ptabs_paddr[GIET_NB_VSPACE_MAX]; 93 94 __attribute__((section (".wdata"))) 92 95 unsigned int boot_ptabs_vaddr[GIET_NB_VSPACE_MAX]; 93 96 94 97 // Scheduler pointers array (virtual addresses) 98 __attribute__((section (".wdata"))) 95 99 static_scheduler_t* boot_schedulers[NB_CLUSTERS * NB_PROCS_MAX]; 96 100 97 101 // Next free PT2 index array 102 __attribute__((section (".wdata"))) 98 103 unsigned int boot_next_free_pt2[GIET_NB_VSPACE_MAX] = 99 104 { [0 ... GIET_NB_VSPACE_MAX - 1] = 0 }; 100 105 101 106 // Max PT2 index 107 __attribute__((section (".wdata"))) 102 108 unsigned int boot_max_pt2[GIET_NB_VSPACE_MAX] = 103 109 { [0 ... GIET_NB_VSPACE_MAX - 1] = 0 };
Note: See TracChangeset
for help on using the changeset viewer.