⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threadqextractwithproxy.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/* *  Thread Queue Handler * * *  COPYRIGHT (c) 1989-1999. *  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.com/license/LICENSE. * *  $Id: threadqextractwithproxy.c,v 1.3.2.1 2003/09/04 18:52:48 joel Exp $ */#include <rtems/system.h>#include <rtems/score/chain.h>#include <rtems/score/isr.h>#include <rtems/score/object.h>#include <rtems/score/states.h>#include <rtems/score/thread.h>#include <rtems/score/threadq.h>#include <rtems/score/tqdata.h>/*PAGE * *  _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 */ boolean _Thread_queue_Extract_with_proxy(  Thread_Control       *the_thread){  States_Control                state;  Objects_Information          *the_information;  Objects_Thread_queue_Extract_callout  proxy_extract_callout;  state = the_thread->current_state;  if ( _States_Is_waiting_on_thread_queue( state ) ) {    if ( _States_Is_waiting_for_rpc_reply( state ) &&         _States_Is_locally_blocked( state ) ) {      the_information = _Objects_Get_information( the_thread->Wait.id );      proxy_extract_callout =         (Objects_Thread_queue_Extract_callout) the_information->extract;      if ( proxy_extract_callout )        (*proxy_extract_callout)( the_thread );    }    _Thread_queue_Extract( the_thread->Wait.queue, the_thread );    return TRUE;  }  return FALSE;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -