summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/isrlock.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.