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