summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/apimutexlock.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Use thread life protection for API mutexesSebastian Huber2014-03-311-4/+10
| | | | | This prevents that asynchronous thread deletion can lead to an unusable allocator or once mutex.
* score: Relax Giant lock usage for API mutexesSebastian Huber2014-03-311-0/+4
| | | | | It is no longer necessary to protect the workspace allocations with the Giant lock due to the thread life cycle re-implementation.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* score: Avoid direct usage of _Thread_ExecutingSebastian Huber2013-07-181-0/+1
| | | | | | Pass the executing thread as a function parameter. Obtain the executing thread inside a thread dispatch critical section to avoid problems on SMP.
* score: Create mutex implementation headerSebastian Huber2013-07-181-0/+1
| | | | | | Move implementation specific parts of coremutex.h and coremutex.inl into new header file coremuteximpl.h. The coremutex.h contains now only the application visible API.
* score misc: Score misc: Clean up Doxygen #10 (GCI 2012)Christopher Kerl2012-12-011-0/+8
| | | | | | | This patch is a task from GCI 2012 which improves the Doxygen comments in the RTEMS source. http://www.google-melange.com/gci/task/view/google/gci2012/7983216
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2011-08-02 Jennifer.Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2011-08-021-0/+4
| | | | | | PR 1872 * score/src/apimutexlock.c, score/src/apimutexunlock.c: Added smp support to apimutex.
* Whitespace removal.Ralf Corsepius2009-11-291-1/+1
|
* Eliminate TRUE/FALSE.Ralf Corsepius2008-12-221-1/+1
|
* 2007-11-09 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-11-091-8/+12
| | | | | * score/src/apimutexlock.c, score/src/apimutexunlock.c: Functions were in opposite files. Whoops!
* 2007-11-09 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill2007-11-091-0/+30
* sapi/src/exinit.c, score/Makefile.am, score/include/rtems/score/apimutex.h: API Mutex calls should never have been inlined. Inlining them lead to many inlined copies of core mutex lock. This lead to over 2K savings in the SPARC/ERC32 minimum.exe. * score/src/apimutex.c, score/src/apimutexallocate.c, score/src/apimutexlock.c, score/src/apimutexunlock.c: New files.