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

📄 getlq.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/*  Shm_Envelope_control *Shm_Locked_queue_Get( lq_cb ) * *  This routine returns an envelope control block from a shared *  memory queue. * *  Input parameters: *    lq_cb - pointer to a locked queue control block * *  Output parameters: *    returns - pointer to an envelope control block *            - NULL if no envelopes on specified queue * *  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: getlq.c,v 1.10.8.1 2003/09/04 18:53:36 joel Exp $ */#include <rtems.h>#include <shm_driver.h>Shm_Envelope_control *Shm_Locked_queue_Get(  Shm_Locked_queue_Control *lq_cb){  Shm_Envelope_control *tmp_ecb;  rtems_unsigned32 tmpfront;  tmp_ecb = NULL;  Shm_Lock( lq_cb );    tmpfront = Shm_Convert(lq_cb->front);    if ( tmpfront != Shm_Locked_queue_End_of_list ) {      tmp_ecb = &Shm_Envelopes[ tmpfront ];      lq_cb->front = tmp_ecb->next;      if ( tmp_ecb->next == Shm_Locked_queue_End_of_list )        lq_cb->rear = Shm_Locked_queue_End_of_list;      tmp_ecb->next = Shm_Locked_queue_Not_on_list;    }  Shm_Unlock( lq_cb );  return( tmp_ecb );}

⌨️ 快捷键说明

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