module ti.syslink.ipc.rtos.Syslink
C synopsis target-domain sourced in ti/syslink/ipc/rtos/Syslink.xdc
 
Syslink_attach()  // module-wide

Attaches Syslink specific initialization logic to Ipc_attach function

C synopsis target-domain
Int Syslink_attach(UArg object, UInt16 remoteProcId);
 
ARGUMENTS
object — Syslink specific object plugged in Ipc object
remoteProcId — Remote processor Identifier.
(returns) 0 on success or < 0 on failure.
 
Syslink_detach()  // module-wide

Attaches Syslink specific finalization logic to Ipc_detach function

C synopsis target-domain
Int Syslink_detach(UArg object, UInt16 remoteProcId);
 
ARGUMENTS
object — Syslink specific object plugged in Ipc object
remoteProcId — Remote processor Identifier.
(returns) 0 on success or < 0 on failure.
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId Syslink_Module_id();
// Get this module's unique id
 
Bool Syslink_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle Syslink_Module_heap();
// The heap from which this module allocates memory
 
Bool Syslink_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 Syslink_Module_getMask();
// Returns the diagnostics mask for this module
 
Void Syslink_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/syslink/ipc/rtos/Syslink.xdc
var Syslink = xdc.useModule('ti.syslink.ipc.rtos.Syslink');
module-wide config parameters
 
 
metaonly config Syslink.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
Syslink.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 Mon, 20 Jun 2011 05:31:05 GMT