Changeset 706
- Timestamp:
- Aug 24, 2015, 5:08:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/ctx_handler.c
r705 r706 296 296 if ( psched->context[next_task_id][CTX_SIG_ID] & SIG_MASK_KILL ) 297 297 { 298 _ctx_kill_task( next_task_id );299 300 298 // acknowledge signal 301 299 _atomic_and( &psched->context[next_task_id][CTX_SIG_ID], ~SIG_MASK_KILL ); 300 301 _ctx_kill_task( next_task_id ); 302 302 } 303 303 … … 305 305 if ( psched->context[next_task_id][CTX_SIG_ID] & SIG_MASK_EXEC ) 306 306 { 307 _ctx_exec_task( next_task_id );308 309 307 // acknowledge signal 310 308 _atomic_and( &psched->context[next_task_id][CTX_SIG_ID], ~SIG_MASK_EXEC ); 309 310 _ctx_exec_task( next_task_id ); 311 311 } 312 312
Note: See TracChangeset
for help on using the changeset viewer.