1    /* --COPYRIGHT--,TI
     2     * Copyright (c) $(CPYYEAR)
     3     * Texas Instruments
     4     *
     5     *  All rights reserved.  Property of Texas Instruments
     6     *  Restricted rights to use, duplicate or disclose this code are
     7     *  granted through contract.
     8     * 
     9     * --/COPYRIGHT--*/
    10    /*
    11     *  ======== TransportShmSetup.xdc ========
    12     *
    13     *! Revision History
    14     *! ================
    15     *! 02-Oct-2009 jv      use GateMP and remove GateProxy.
    16     *! 28-Apr-2008 nitya   review update
    17     */
    18     
    19    /*!
    20     *  ======== TransportShmSetup ========
    21     *  Manages the setup of TransportShm instances.
    22     *
    23     *  create() or open() the TransportShm for each pair of devices.
    24     */
    25    
    26    module TransportShmSetup inherits ti.sdo.ipc.interfaces.ITransportSetup 
    27    {
    28    
    29    internal:
    30    
    31        /* Module Status object */
    32        struct Module_State {
    33            TransportShm.Handle handles[];  /* store a handle per remote proc */
    34        }
    35    }