Product Documentation
Cadence SKILL Development Reference
Product Version IC23.1, June 2023

callInitProc

callInitProc( 
t_contextName 
) 
=> t 

Description

Calls all the initialization functions associated with a context.

Takes the same argument as loadContext (but without the .cxt extension) and causes all the initialization functions associated with the given context to be called. This function need not be used if the loading of the context is happening through the autoload mechanism. Use this function only when calling loadContext manually.

Arguments

t_contextName

Name of the context.

Value Returned

t

Initialization functions have been successfully called.

Examples

All functions defined through defInitProc and defUserInitProc are called.

loadContext("myContext.cxt")
=> t
callInitProc("myContext")
=> t

Related Topics

Context Functions

loadContext

defInitProc

defUserInitProc


Return to top
 ⠀
X