unregister_proc - 2023.2 English

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2023-10-18
Version
2023.2 English

Unregister a previously registered Tcl proc.

Syntax

unregister_proc [‑quiet] [‑verbose] <tasknm>

Returns

Nothing

Usage

Name Description
[-quiet] Ignore command errors
[-verbose] Suspend message limits during command execution
<tasknm> Name of Tcl task to unregister. The task must be wrapping a proc.

Categories

Tools

Description

Unregister the Tcl command, or <tasknm>, from the Vivado™ Design Suite Tcl interpretor.

Arguments

-quiet - (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
Note: Any errors encountered on the command-line, while launching the command, will be returned. Only errors occurring inside the command will be trapped.
-verbose - (Optional) Temporarily override any message limits and return all messages from this command.
Note: Message limits can be defined with the set_msg_config command.

<tasknm> - (Required) Name of Tcl task to unregister. The task must be wrapping a registered Tcl procedure.

Example

The following example unregisters the findCmd Tcl task:

unregister_proc findCmd

See Also