module ti.sdo.ipc.transports.TransportShmNotifySetup

Manages the setup of TransportShmNotify instances

create or open the TransportShmNotify for each pair of devices.
C synopsis target-domain sourced in ti/sdo/ipc/transports/TransportShmNotifySetup.xdc
 
config TransportShmNotifySetup_priority  // module-wide

priority of the transport

C synopsis target-domain
extern const UInt TransportShmNotifySetup_priority;
 
 
TransportShmNotifySetup_attach()  // module-wide

Function that will be called in MessageQ_attach

C synopsis target-domain
Int TransportShmNotifySetup_attach(UInt16 remoteProcId, Ptr sharedAddr);
 
 
TransportShmNotifySetup_detach()  // module-wide

Function that will be called in MessageQ_detach

C synopsis target-domain
Int TransportShmNotifySetup_detach(UInt16 remoteProcId);
 
 
TransportShmNotifySetup_isRegistered()  // module-wide

Determines if a transport has been registered to a remote processor

C synopsis target-domain
Bool TransportShmNotifySetup_isRegistered(UInt16 remoteProcId);
 
 
TransportShmNotifySetup_sharedMemReq()  // module-wide

Shared memory required

C synopsis target-domain
SizeT TransportShmNotifySetup_sharedMemReq(Ptr sharedAddr);
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId TransportShmNotifySetup_Module_id();
// Get this module's unique id
 
Bool TransportShmNotifySetup_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle TransportShmNotifySetup_Module_heap();
// The heap from which this module allocates memory
 
Bool TransportShmNotifySetup_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 TransportShmNotifySetup_Module_getMask();
// Returns the diagnostics mask for this module
 
Void TransportShmNotifySetup_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/ipc/transports/TransportShmNotifySetup.xdc
var TransportShmNotifySetup = xdc.useModule('ti.sdo.ipc.transports.TransportShmNotifySetup');
module-wide config parameters
 
 
 
config TransportShmNotifySetup.priority  // module-wide

priority of the transport

XDCscript usage meta-domain
TransportShmNotifySetup.priority = UInt 0;
 
C SYNOPSIS
 
metaonly config TransportShmNotifySetup.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
TransportShmNotifySetup.common$ = Types.Common$ undefined;
 
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.
generated on Sat, 11 Feb 2012 00:38:12 GMT