Product Documentation
Virtuoso Technology Data SKILL Reference
Product Version IC23.1, June 2023

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

s_function

A SKILL procedure with two arguments: the name of the design library and the name of the technology database.

x_priority

Trigger functions are called in order of priority, with 0 having the highest priority. If you do not specify a priority argument, the default is the lowest priority (that is, it executes after any other trigger function that specifies a priority).

Valid values: Any integer

Value Returned

t

The trigger function is registered.

nil

The trigger function is registered.

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
 ⠀
X