summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/threadqimpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-23 11:57:11 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-08-26 10:02:53 +0200
commitdb0e05ff6f6f9d3738c10c80bf5faaea2a0a4fa8 (patch)
treed5d29ea79cdd066425373c82545c330e4d8adad0 /cpukit/score/include/rtems/score/threadqimpl.h
parentscore: PR2140: Fix _Thread_queue_Process_timeout() (diff)
downloadrtems-db0e05ff6f6f9d3738c10c80bf5faaea2a0a4fa8.tar.bz2
score: Delete unused function parameter
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/threadqimpl.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpukit/score/include/rtems/score/threadqimpl.h b/cpukit/score/include/rtems/score/threadqimpl.h
index 11de27872e..78376b065c 100644
--- a/cpukit/score/include/rtems/score/threadqimpl.h
+++ b/cpukit/score/include/rtems/score/threadqimpl.h
@@ -266,7 +266,6 @@ Thread_blocking_operation_States _Thread_queue_Enqueue_priority (
* @retval false Otherwise.
*/
bool _Thread_queue_Extract_priority_helper(
- Thread_queue_Control *the_thread_queue,
Thread_Control *the_thread,
bool requeuing
);
@@ -277,8 +276,8 @@ bool _Thread_queue_Extract_priority_helper(
* This macro wraps the underlying call and hides the requeuing argument.
*/
-#define _Thread_queue_Extract_priority( _the_thread_queue, _the_thread ) \
- _Thread_queue_Extract_priority_helper( _the_thread_queue, _the_thread, false )
+#define _Thread_queue_Extract_priority( _the_thread ) \
+ _Thread_queue_Extract_priority_helper( _the_thread, false )
/**
* @brief Get highest priority thread on the_thread_queue.
*
@@ -339,7 +338,6 @@ Thread_blocking_operation_States _Thread_queue_Enqueue_fifo (
* and cancels any timeouts associated with this blocking.
*/
bool _Thread_queue_Extract_fifo(
- Thread_queue_Control *the_thread_queue,
Thread_Control *the_thread
);