interface ti.sdo.ipc.interfaces.ITransportSetup
XDCspec summary sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
interface ITransportSetup {  ...
// inherits xdc.runtime.IModule
XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
 
interface ITransportSetup {
module-wide config parameters
module-wide functions
    Int attach// ion that will be called in MessageQ_attach(UInt16 remoteProcId, Ptr sharedAddr);
    Int detach// nction that will be called in MessageQ_detach(UInt16 remoteProcId);
    SizeT sharedMemReq// ared memory required(Ptr sharedAddr);
}
 
metaonly config ITransportSetup.common$  // module-wide

Common module configuration parameters

XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
metaonly config Types.Common$ common$;
 
DETAILS
All modules have this configuration parameter. Its name contains the '$' character to ensure it does not conflict with configuration parameters declared by the module. This allows new configuration parameters to be added in the future without any chance of breaking existing modules.
 
ITransportSetup.attach()  // module-wide

ion that will be called in MessageQ_attach

XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
Int attach(UInt16 remoteProcId, Ptr sharedAddr);
 
 
ITransportSetup.detach()  // module-wide

nction that will be called in MessageQ_detach

XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
Int detach(UInt16 remoteProcId);
 
 
ITransportSetup.isRegistered()  // module-wide

termines if a transport has been registered to a remote processor

XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
Bool isRegistered(UInt16 remoteProcId);
 
 
ITransportSetup.sharedMemReq()  // module-wide

ared memory required

XDCspec declarations sourced in ti/sdo/ipc/interfaces/ITransportSetup.xdc
SizeT sharedMemReq(Ptr sharedAddr);
 
generated on Mon, 02 May 2011 23:29:27 GMT