Changeset 385
- Timestamp:
- Aug 7, 2014, 12:30:40 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/kernel_init.c
r379 r385 129 129 130 130 //////////////////////////////////////////////////////////////////////////////////// 131 // sta ks for the "idle" tasks (512bytes for each processor)131 // stacks for the "idle" tasks (64 bytes for each processor) 132 132 //////////////////////////////////////////////////////////////////////////////////// 133 133 … … 297 297 unsigned int p = ((x * Y_SIZE) + y) * NB_PROCS_MAX + lpid; 298 298 299 unsigned int stack = (unsigned int)_idle_stack + ((p + 1) <<9);299 unsigned int stack = (unsigned int)_idle_stack + ((p + 1) * 64); 300 300 301 301 _set_task_slot( global_pid, IDLE_TASK_INDEX, CTX_SP_ID, stack);
Note: See TracChangeset
for help on using the changeset viewer.