threadqextractwithproxy.c: Doxygen header and spacing

This commit is contained in:
Joel Sherrill
2012-10-11 15:52:51 -05:00
parent c1412db5c3
commit b8fa5013fd
+14 -15
View File
@@ -1,8 +1,17 @@
/**
* @brief _Thread_queue_Extract_with_proxy
*
* This routine extracts the_thread from the_thread_queue
* and ensures that if there is a proxy for this task on
* another node, it is also dealt with. A proxy is a data
* data that is on the thread queue on the remote node and
* acts as a proxy for the local thread. If the local thread
* was waiting on a remote operation, then the remote side
* of the operation must be cleaned up.
*/
/*
* Thread Queue Handler
*
*
* COPYRIGHT (c) 1989-2008.
* COPYRIGHT (c) 1989-2012.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -23,21 +32,11 @@
#include <rtems/score/threadq.h>
#include <rtems/score/tqdata.h>
/*
* _Thread_queue_Extract_with_proxy
*
* This routine extracts the_thread from the_thread_queue
* and ensures that if there is a proxy for this task on
* another node, it is also dealt with.
*
* XXX
*/
bool _Thread_queue_Extract_with_proxy(
Thread_Control *the_thread
)
{
States_Control state;
States_Control state;
state = the_thread->current_state;