mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 07:25:26 +08:00
threadqextractwithproxy.c: Doxygen header and spacing
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user