summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/object.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-20 09:50:01 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-04-21 08:25:32 +0200
commitd3802bb5d708d01d03774b6758ed1e87484b8fac (patch)
tree40ff15dcafece4b9e5a72eb9706831d44ab2c5dc /cpukit/score/include/rtems/score/object.h
parentscore: Add _Thread_Get_interrupt_disable() (diff)
downloadrtems-d3802bb5d708d01d03774b6758ed1e87484b8fac.tar.bz2
score: Delete object control block ISR lock
The Objects_Control::Lock was a software layer violation. It worked only for the threads since they are somewhat special. Update #2273.
Diffstat (limited to 'cpukit/score/include/rtems/score/object.h')
-rw-r--r--cpukit/score/include/rtems/score/object.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/score/include/rtems/score/object.h
index 36449431d4..70e5fe630c 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/score/include/rtems/score/object.h
@@ -23,7 +23,6 @@
#include <rtems/score/basedefs.h>
#include <rtems/score/cpu.h>
#include <rtems/score/chain.h>
-#include <rtems/score/isrlock.h>
#ifdef __cplusplus
extern "C" {
@@ -237,8 +236,6 @@ typedef struct {
Objects_Id id;
/** This is the object's name. */
Objects_Name name;
- /** This is the object's ISR lock. */
- ISR_LOCK_MEMBER( Lock )
} Objects_Control;
#if defined( RTEMS_MULTIPROCESSING )