summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectgetlocal.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Rename _Objects_Get_local()Sebastian Huber2016-05-201-1/+1
| | | | | | Rename _Objects_Get_local() into _Objects_Get(). Confusions with the previous _Objects_Get() function are avoided since the Objects_Locations parameter is gone.
* score: Optimize _Objects_Get_local()Sebastian Huber2016-05-021-2/+2
| | | | | Make the interrupt lock context the second parameter to avoid register moves.
* score: Optimize _Objects_Get_local()Sebastian Huber2016-04-211-1/+1
| | | | | Make the id the first parameter since usual callers get the object identifier as the first parameter themself.
* score: Add and use _Objects_Get_local()Sebastian Huber2016-03-141-0/+53
This simplifies the handling with local-only objects. Update #2555.