Changeset 629 for soft/giet_vm/giet_kernel/ctx_handler.c
- Timestamp:
- Jul 18, 2015, 3:00:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/ctx_handler.c
r528 r629 39 39 " - CTX_RA = %x\n" 40 40 " - CTX_SP = %x\n" 41 " - CTX_ RUN= %x\n"41 " - CTX_NORUN = %x\n" 42 42 "########## %s\n", 43 43 x , y , p , ltid , … … 49 49 psched->context[ltid][CTX_RA_ID], 50 50 psched->context[ltid][CTX_SP_ID], 51 psched->context[ltid][CTX_ RUN_ID],51 psched->context[ltid][CTX_NORUN_ID], 52 52 string ); 53 53 } // _ctx_display() … … 79 79 next_task_id = tid % tasks; 80 80 // test if the task is runable 81 if ( psched->context[next_task_id][CTX_ RUN_ID])81 if ( psched->context[next_task_id][CTX_NORUN_ID] == 0 ) 82 82 { 83 83 found = 1;
Note: See TracChangeset
for help on using the changeset viewer.