module ti.sdo.ipc.notifyDrivers.NotifySetupNull
XDCspec summary sourced in ti/sdo/ipc/notifyDrivers/NotifySetupNull.xdc
module NotifySetupNull {  ...
    // inherits xdc.runtime.IModule
C synopsis target-domain
XDCscript usage meta-domain
var NotifySetupNull = xdc.useModule('ti.sdo.ipc.notifyDrivers.NotifySetupNull');
module-wide config parameters
 
XDCspec declarations sourced in ti/sdo/ipc/notifyDrivers/NotifySetupNull.xdc
 
module NotifySetupNull inherits INotifySetup {
module-wide config parameters
module-wide functions
    Int attach// Function that will be called in Notify_attach( UInt16 remoteProcId, Ptr sharedAddr );
    SizeT sharedMemReq// Shared Memory Required for a single notification line( UInt16 remoteProcId, Ptr sharedAddr );
}
 
metaonly config NotifySetupNull.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
NotifySetupNull.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.
 
NotifySetupNull.attach( )  // module-wide

Function that will be called in Notify_attach

C synopsis target-domain
Int NotifySetupNull_attach( UInt16 remoteProcId, Ptr sharedAddr );
 
 
NotifySetupNull.intLineAvailable( )  // module-wide

Returns whether there is an interrupt line available to the processor

C synopsis target-domain
Bool NotifySetupNull_intLineAvailable( UInt16 remoteProcId );
 
 
NotifySetupNull.sharedMemReq( )  // module-wide

Shared Memory Required for a single notification line

C synopsis target-domain
SizeT NotifySetupNull_sharedMemReq( UInt16 remoteProcId, Ptr sharedAddr );
 
 
module-wide built-ins

C synopsis target-domain
Types_ModuleId NotifySetupNull_Module_id( );
// Get this module's unique id
 
Bool NotifySetupNull_Module_startupDone( );
// Test if this module has completed startup
 
IHeap_Handle NotifySetupNull_Module_heap( );
// The heap from which this module allocates memory
 
Bool NotifySetupNull_Module_hasMask( );
// Test whether this module has a diagnostics mask
 
Bits16 NotifySetupNull_Module_getMask( );
// Returns the diagnostics mask for this module
 
Void NotifySetupNull_Module_setMask( Bits16 mask );
// Set the diagnostics mask for this module
generated on Fri, 09 Apr 2010 01:41:09 GMT