/** * @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. */ /* * COPYRIGHT (c) 1989-2012. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include void _Thread_queue_Extract_with_proxy( Thread_Control *the_thread ) { #if defined(RTEMS_MULTIPROCESSING) States_Control state; state = the_thread->current_state; if ( _States_Is_waiting_for_rpc_reply( state ) && _States_Is_locally_blocked( state ) ) { Objects_Id id; Objects_Information *the_information; Objects_Thread_queue_Extract_callout proxy_extract_callout; id = the_thread->Wait.remote_id; the_information = _Objects_Get_information_id( id ); proxy_extract_callout = the_information->extract; if ( proxy_extract_callout != NULL ) (*proxy_extract_callout)( the_thread, id ); } #endif _Thread_queue_Extract( the_thread ); }