source: rtems/c/src/lib/libbsp/shmdr/getlq.c @ e1d8abb

4.104.114.84.95
Last change on this file since e1d8abb was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*  Shm_Envelope_control *Shm_Locked_queue_Get( lq_cb )
2 *
3 *  This routine returns an envelope control block from a shared
4 *  memory queue.
5 *
6 *  Input parameters:
7 *    lq_cb - pointer to a locked queue control block
8 *
9 *  Output parameters:
10 *    returns - pointer to an envelope control block
11 *            - NULL if no envelopes on specified queue
12 *
13 *  COPYRIGHT (c) 1989-1998.
14 *  On-Line Applications Research Corporation (OAR).
15 *  Copyright assigned to U.S. Government, 1994.
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.OARcorp.com/rtems/license.html.
20 *
21 *  $Id$
22 */
23
24#include <rtems.h>
25#include <shm.h>
26
27Shm_Envelope_control *Shm_Locked_queue_Get(
28  Shm_Locked_queue_Control *lq_cb
29)
30{
31  Shm_Envelope_control *tmp_ecb;
32  rtems_unsigned32 tmpfront;
33
34  tmp_ecb = NULL;
35  Shm_Lock( lq_cb );
36
37    tmpfront = Shm_Convert(lq_cb->front);
38    if ( tmpfront != Shm_Locked_queue_End_of_list ) {
39      tmp_ecb = &Shm_Envelopes[ tmpfront ];
40      lq_cb->front = tmp_ecb->next;
41      if ( tmp_ecb->next == Shm_Locked_queue_End_of_list )
42        lq_cb->rear = Shm_Locked_queue_End_of_list;
43      tmp_ecb->next = Shm_Locked_queue_Not_on_list;
44    }
45
46  Shm_Unlock( lq_cb );
47  return( tmp_ecb );
48}
Note: See TracBrowser for help on using the repository browser.