source: rtems/c/src/libchip/shmdr/addlq.c @ 74172b7d

5
Last change on this file since 74172b7d was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  void Shm_Locked_queue_Add( lq_cb, ecb )
2 *
3 *  This routine adds an envelope control block to a shared memory queue.
4 *
5 *  Input parameters:
6 *    lq_cb - pointer to a locked queue control block
7 *    ecb   - pointer to an envelope control block
8 *
9 *  Output parameters: NONE
10 *
11 *  COPYRIGHT (c) 1989-1999.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.org/license/LICENSE.
17 */
18
19#include <rtems.h>
20#include "shm_driver.h"
21
22void Shm_Locked_queue_Add(
23  Shm_Locked_queue_Control *lq_cb,
24  Shm_Envelope_control     *ecb
25)
26{
27  uint32_t   index;
28
29  ecb->next  = Shm_Locked_queue_End_of_list;
30  ecb->queue = lq_cb->owner;
31  index      = ecb->index;
32
33  Shm_Lock( lq_cb );
34    if ( Shm_Convert(lq_cb->front) != Shm_Locked_queue_End_of_list )
35      Shm_Envelopes[ Shm_Convert(lq_cb->rear) ].next = index;
36    else
37      lq_cb->front = index;
38    lq_cb->rear  = index;
39  Shm_Unlock( lq_cb );
40}
Note: See TracBrowser for help on using the repository browser.