summaryrefslogtreecommitdiff
path: root/cpukit/score/include/rtems/score/coresem.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/coresem.h')
-rw-r--r--cpukit/score/include/rtems/score/coresem.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/cpukit/score/include/rtems/score/coresem.h b/cpukit/score/include/rtems/score/coresem.h
index 84fde0b892..f9d3ac8fd5 100644
--- a/cpukit/score/include/rtems/score/coresem.h
+++ b/cpukit/score/include/rtems/score/coresem.h
@@ -38,18 +38,6 @@ extern "C" {
/**@{*/
/**
- * Blocking disciplines for a semaphore.
- */
-typedef enum {
- /** This specifies that threads will wait for the semaphore in FIFO order. */
- CORE_SEMAPHORE_DISCIPLINES_FIFO,
- /** This specifies that threads will wait for the semaphore in
- * priority order.
- */
- CORE_SEMAPHORE_DISCIPLINES_PRIORITY
-} CORE_semaphore_Disciplines;
-
-/**
* The following defines the control block used to manage each
* counting semaphore.
*/
@@ -59,11 +47,6 @@ typedef struct {
*/
Thread_queue_Control Wait_queue;
- /**
- * @brief The thread queue operations according to the blocking discipline.
- */
- const Thread_queue_Operations *operations;
-
/** This element contains the current count of this semaphore. */
uint32_t count;
} CORE_semaphore_Control;