module ti.sdo.fc.rman.examples.EXAMPLE

Resource Manager for shared C64x+ resources

C synopsis target-domain sourced in ti/sdo/fc/rman/examples/EXAMPLE.xdc
 
config EXAMPLE_gate  // module-wide
C synopsis target-domain
extern const IGateProvider_Handle EXAMPLE_gate;
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId EXAMPLE_Module_id();
// Get this module's unique id
 
Bool EXAMPLE_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle EXAMPLE_Module_heap();
// The heap from which this module allocates memory
 
Bool EXAMPLE_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 EXAMPLE_Module_getMask();
// Returns the diagnostics mask for this module
 
Void EXAMPLE_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/fc/rman/examples/EXAMPLE.xdc
var EXAMPLE = xdc.useModule('ti.sdo.fc.rman.examples.EXAMPLE');
module-wide config parameters
    EXAMPLE.gate//  = IGateProvider.Handle undefined;
 
 
 
config EXAMPLE.gate  // module-wide
XDCscript usage meta-domain
EXAMPLE.gate = IGateProvider.Handle undefined;
 
C SYNOPSIS
 
metaonly config EXAMPLE.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
EXAMPLE.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, 16 Apr 2012 07:09:34 GMT