summaryrefslogtreecommitdiff
path: root/cpukit/score/src/debugisthreaddispatchingallowed.c (follow)
AgeCommit message (Collapse)Author
2016-05-20score: Rename _ISR_Disable_without_giant()Sebastian Huber
Rename _ISR_Disable_without_giant() into _ISR_Local_disable(). Rename _ISR_Enable_without_giant() into _ISR_Local_enable(). This is a preparation to remove the Giant lock. Update #2555.
2014-04-22score: Use common names for per-CPU variablesSebastian Huber
Use "cpu" for an arbitrary Per_CPU_Control variable. Use "cpu_self" for the Per_CPU_Control of the current processor. Use "cpu_index" for an arbitrary processor index. Use "cpu_index_self" for the processor index of the current processor. Use "cpu_count" for the processor count obtained via _SMP_Get_processor_count(). Use "cpu_max" for the processor maximum obtained by rtems_configuration_get_maximum_processors().
2014-04-22score: Use _Per_CPU_Get_snapshot()Sebastian Huber
2014-03-24score: _Debug_Is_thread_dispatching_allowed()Sebastian Huber
Do not check ISR level in _Debug_Is_thread_dispatching_allowed().
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2014-03-19score: Delete _Assert_Thread_dispatching_repressedSebastian Huber
Add _Debug_Is_thread_dispatching_allowed(). This makes it possible to assert the opposite. Use _ISR_Disable_without_giant()/_ISR_Enable_without_giant() to avoid misleading secondary assertion failures.