summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/isrlock.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Optimize self-contained mutexesSebastian Huber2016-11-041-0/+18
|
* score: Provide inline variants for ISR lock opsSebastian Huber2016-11-041-0/+32
|
* score: Rename _ISR_Flash() into _ISR_Local_flash()Sebastian Huber2016-05-201-2/+2
| | | | | | This is a preparation to remove the Giant lock. Update #2555.
* score: Rename _ISR_Disable() and _ISR_Enable()Sebastian Huber2016-05-201-4/+4
| | | | | | | | | Rename _ISR_Disable() into _ISR_Local_disable(). Rename _ISR_Enable() into _ISR_Local_enable(). Remove _Debug_Is_owner_of_giant(). This is a preparation to remove the Giant lock. Update #2555.
* score: Rename _ISR_Disable_without_giant()Sebastian Huber2016-05-201-2/+2
| | | | | | | | | 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.
* score: Add _ISR_lock_Is_owner()Sebastian Huber2016-05-121-0/+19
|
* score: Avoid unused variable warningsSebastian Huber2016-02-171-2/+4
|
* score: _Thread_Dispatch_disable_critical()Sebastian Huber2015-05-191-2/+21
| | | | | | | Thread dispatching is disabled in case interrupts are disabled. To get an accurate thread dispatch disabled time it is important to use the interrupt disabled instant in case a transition from an interrupt disabled section to a thread dispatch level section happens.
* score: Add _ISR_lock_ISR_disable/enable()Sebastian Huber2015-04-201-1/+37
|
* score: Add _ISR_lock_Flash()Sebastian Huber2015-04-161-0/+31
|
* score: C/C++ compatibility macros for ISR locksSebastian Huber2015-03-051-4/+51
| | | | Update #2273.
* score: ISR lock C/C++ compatiblity issueSebastian Huber2015-03-041-65/+63
| | | | | | | | | | Empty structures are implementation-defined in C. GCC gives them a size of zero. In C++ empty structures have a non-zero size. Add ISR_LOCK_DEFINE() to define ISR locks for structures used by C and C++. Update #2273.
* score: DocumentationSebastian Huber2014-05-071-2/+6
|
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* score: Add SMP lock profiling supportSebastian Huber2014-03-141-5/+11
|
* score: Add function to destroy SMP locksSebastian Huber2014-03-111-0/+16
|
* score: Add local context to SMP lock APISebastian Huber2014-03-111-42/+68
| | | | | | | | | | | Add a local context structure to the SMP lock API for acquire and release pairs. This context can be used to store the ISR level and profiling information. It may be later used to enable more sophisticated lock algorithms, e.g. MCS locks. There is only one lock that cannot be used with a local context. This is the per-CPU lock since here we would have to transfer the local context through a context switch which is very complicated.
* score: ISR lock API changesSebastian Huber2013-08-011-6/+50
|
* score: Add and use ISR locksSebastian Huber2013-07-311-0/+141
ISR locks are low-level locks to protect critical sections accessed by threads and interrupt service routines. On single processor configurations the ISR locks degrade to simple ISR disable/enable sequences. No additional storage or objects are required. This synchronization primitive is supported on SMP configurations. Here SMP locks are used.