tcRegPostAttachTrigger
tcRegPostAttachTrigger(s_function[x_priority] ) => t / nil
Description
Registers a trigger function the system calls after attaching a design library to a technology library. You can use this function to keep track of the technology library of a design library is attached to.
Arguments
Value Returned
Example
procedure(myPostAttachTrig(libName techLibName) println("myPostAttachTrig") printf("Attach design library '%s' to technology library '%s'.\n" libName techLibName)
)
tcRegPostAttachTrigger('myPostAttachTrig)
Registers a trigger function, 'myPostAttachTrig.
Return to top