summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/coresem.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-22 08:52:50 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-03-29 07:26:43 +0200
commit97bbf028e63447091a56a4be69134fbff1adece6 (patch)
treeae60634e413f1dc5149c6cd0188623e591be8ea3 /cpukit/score/include/rtems/score/coresem.h
parentscore: Remove Thread_queue_Queue::operations field (diff)
downloadrtems-97bbf028e63447091a56a4be69134fbff1adece6.tar.bz2
score: Use constant for maximum count of CORE sema
Diffstat (limited to 'cpukit/score/include/rtems/score/coresem.h')
-rw-r--r--cpukit/score/include/rtems/score/coresem.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpukit/score/include/rtems/score/coresem.h b/cpukit/score/include/rtems/score/coresem.h
index 44e17c3d20..84fde0b892 100644
--- a/cpukit/score/include/rtems/score/coresem.h
+++ b/cpukit/score/include/rtems/score/coresem.h
@@ -50,15 +50,6 @@ typedef enum {
} CORE_semaphore_Disciplines;
/**
- * The following defines the control block used to manage the
- * attributes of each semaphore.
- */
-typedef struct {
- /** This element indicates the maximum count this semaphore may have. */
- uint32_t maximum_count;
-} CORE_semaphore_Attributes;
-
-/**
* The following defines the control block used to manage each
* counting semaphore.
*/
@@ -73,10 +64,6 @@ typedef struct {
*/
const Thread_queue_Operations *operations;
- /** This element is the set of attributes which define this instance's
- * behavior.
- */
- CORE_semaphore_Attributes Attributes;
/** This element contains the current count of this semaphore. */
uint32_t count;
} CORE_semaphore_Control;