summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadq.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-22 10:53:03 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-11-23 12:52:06 +0100
commita4217c674d90de7bcf1af3583aab44fe0c90d2f1 (patch)
tree2357983e63885abeb7819fda837725b9edc65033 /cpukit/score/include/rtems/score/threadq.h
parentscore: Add thread queue enqueue callout (diff)
downloadrtems-a4217c674d90de7bcf1af3583aab44fe0c90d2f1.tar.bz2
score: Rename _Thread_queue_Enqueue_critical()
Delete unused _Thread_queue_Enqueue() and rename _Thread_queue_Enqueue_critical() to _Thread_queue_Enqueue().
Diffstat (limited to 'cpukit/score/include/rtems/score/threadq.h')
-rw-r--r--cpukit/score/include/rtems/score/threadq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/threadq.h b/cpukit/score/include/rtems/score/threadq.h
index df03cfb96a..61ce5fbee2 100644
--- a/cpukit/score/include/rtems/score/threadq.h
+++ b/cpukit/score/include/rtems/score/threadq.h
@@ -193,7 +193,7 @@ struct Thread_queue_Context {
Thread_queue_Lock_context Lock_context;
/**
- * @brief The enqueue callout for _Thread_queue_Enqueue_critical().
+ * @brief The enqueue callout for _Thread_queue_Enqueue().
*
* The callout is invoked after the release of the thread queue lock with
* thread dispatching disabled. Afterwards the thread is blocked.
@@ -272,7 +272,7 @@ struct Thread_queue_Context {
/**
* @brief Invoked in case of a detected deadlock.
*
- * Must be initialized for _Thread_queue_Enqueue_critical() in case the
+ * Must be initialized for _Thread_queue_Enqueue() in case the
* thread queue may have an owner, e.g. for mutex objects.
*
* @see _Thread_queue_Context_set_deadlock_callout().