summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/corerwlock.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-15 16:27:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-21 07:29:37 +0200
commitbbd6d27af8102bc1c89031c78c5a458c1af06cee (patch)
tree765df067f8c9694326bbb4d42bbea146194b1735 /cpukit/score/include/rtems/score/corerwlock.h
parentsptests/spsysinit01: Fix warning (diff)
downloadrtems-bbd6d27af8102bc1c89031c78c5a458c1af06cee.tar.bz2
score: Delete unused CORE_RWLock_Attributes
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/corerwlock.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/score/include/rtems/score/corerwlock.h b/cpukit/score/include/rtems/score/corerwlock.h
index f211339548..89c18c6c65 100644
--- a/cpukit/score/include/rtems/score/corerwlock.h
+++ b/cpukit/score/include/rtems/score/corerwlock.h
@@ -51,16 +51,6 @@ typedef enum {
} CORE_RWLock_States;
/**
- * The following defines the control block used to manage the
- * attributes of each RWLock.
- */
-typedef struct {
- /** This field indicates XXX.
- */
- int XXX;
-} CORE_RWLock_Attributes;
-
-/**
* The following defines the control block used to manage each
* RWLock.
*/
@@ -69,10 +59,6 @@ typedef struct {
* which are blocked waiting for the RWLock to be released.
*/
Thread_queue_Control Wait_queue;
- /** This element is the set of attributes which define this instance's
- * behavior.
- */
- CORE_RWLock_Attributes Attributes;
/** This element is the current state of the RWLock.
*/
CORE_RWLock_States current_state;