Tcl_Exit


HOME

Tcl_Exit

NAME
SYNOPSIS
ARGUMENTS
DESCRIPTION
KEYWORDS

___________________________

NAME

Tcl_Exit, Tcl_Finalize, Tcl_CreateExitHandler, Tcl_DeleteExitHandler, Tcl_ExitThread, Tcl_FinalizeThread, Tcl_CreateThreadExitHandler, Tcl_DeleteThreadExitHandler, Tcl_SetExitProc − end the application or thread (and invoke exit handlers)

SYNOPSIS

#include <tcl.h>

Tcl_Exit(status)

Tcl_Finalize()

Tcl_CreateExitHandler(proc, clientData)

Tcl_DeleteExitHandler(proc, clientData)

Tcl_ExitThread(status)

Tcl_FinalizeThread()

Tcl_CreateThreadExitHandler(proc, clientData)

Tcl_DeleteThreadExitHandler(proc, clientData)

Tcl_ExitProc * │
Tcl_SetExitProc
(proc) │

ARGUMENTS

int status (in)

Provides information about why the application or thread exited. Exact meaning may be platform-specific. 0 usually means a normal exit, any nonzero value usually means that an error occurred.

Tcl_ExitProc *proc (in)

Procedure to invoke before exiting application, or (for Tcl_SetExitProc) NULL to uninstall the current application exit procedure.

ClientData clientData (in)

Arbitrary one-word value to pass to proc.

______________

DESCRIPTION

The procedures described here provide a graceful mechanism to end the execution of a Tcl application. Exit handlers are invoked to cleanup the application’s state before ending the execution of Tcl code.

Invoke Tcl_Exit to end a Tcl application and to exit from this process. This procedure is invoked by the exit command, and can be invoked anyplace else to terminate the application. No-one should ever invoke the exit system procedure directly; always invoke Tcl_Exit instead, so that it can invoke exit handlers. Note that if other code invokes exit system procedure directly, or otherwise causes the application to terminate without calling Tcl_Exit, the exit handlers will not be run. Tcl_Exit internally invokes the exit system call, thus it never returns control to its caller. If an application exit handler has been │ installed (see Tcl_SetExitProc), that handler is invoked with an │ argument consisting of the exit status (cast to ClientData); the │ application exit handler should not return control to Tcl.

Tcl_Finalize is similar to Tcl_Exit except that it does not exit from the current process. It is useful for cleaning up when a process is finished using Tcl but wishes to continue executing, and when Tcl is used in a dynamically loaded extension that is about to be unloaded. On some systems Tcl is automatically notified when it is being unloaded, and it calls Tcl_Finalize internally; on these systems it not necessary for the caller to explicitly call Tcl_Finalize. However, to ensure portability, your code should always invoke Tcl_Finalize when Tcl is being unloaded, to ensure that the code will work on all platforms. Tcl_Finalize can be safely called more than once.

Tcl_ExitThread is used to terminate the current thread and invoke per-thread exit handlers. This finalization is done by Tcl_FinalizeThread, which you can call if you just want to clean up per-thread state and invoke the thread exit handlers. Tcl_Finalize calls Tcl_FinalizeThread for the current thread automatically.

Tcl_CreateExitHandler arranges for proc to be invoked by Tcl_Finalize and Tcl_Exit. Tcl_CreateThreadExitHandler arranges for proc to be invoked by Tcl_FinalizeThread and Tcl_ExitThread. This provides a hook for cleanup operations such as flushing buffers and freeing global memory. Proc should match the type Tcl_ExitProc:

typedef void Tcl_ExitProc(ClientData clientData);

The clientData parameter to proc is a copy of the clientData argument given to Tcl_CreateExitHandler or Tcl_CreateThreadExitHandler when the callback was created. Typically, clientData points to a data structure containing application-specific information about what to do in proc.

Tcl_DeleteExitHandler and Tcl_DeleteThreadExitHandler may be called to delete a previously-created exit handler. It removes the handler indicated by proc and clientData so that no call to proc will be made. If no such handler exists then Tcl_DeleteExitHandler or Tcl_DeleteThreadExitHandler does nothing.

Tcl_Finalize and Tcl_Exit execute all registered exit handlers, in reverse order from the order in which they were registered. This matches the natural order in which extensions are loaded and unloaded; if extension A loads extension B, it usually unloads B before it itself is unloaded. If extension A registers its exit handlers before loading extension B, this ensures that any exit handlers for B will be executed before the exit handlers for A.

Tcl_Finalize and Tcl_Exit call Tcl_FinalizeThread and the thread exit handlers after the process-wide exit handlers. This is because thread finalization shuts down the I/O channel system, so any attempt at I/O by the global exit handlers will vanish into the bitbucket.

Tcl_SetExitProc installs an application exit handler, returning the │ previously-installed application exit handler or NULL if no application │ handler was installed. If an application exit handler is installed, │ that exit handler takes over complete responsibility for finalization │ of Tcl’s subsystems via Tcl_Finalize at an appropriate time. The │ argument passed to proc when it is invoked will be the exit status code │ (as passed to Tcl_Exit) cast to a ClientData value.

KEYWORDS

callback, cleanup, dynamic loading, end application, exit, unloading, thread



More Linux Commands

manpages/ssh-agent.1.html
ssh-agent(1) - authentication agent - Linux manual page.....
ssh-agent is a program to hold private keys used for public key authentication (RSA, DSA, ECDSA, ED25519). The idea is that ssh-agent is started in the beginnin

manpages/is_wintouched.3ncurses.html
is_wintouched(3ncurses) - curses refresh control routines...
The touchwin and touchline routines throw away all optimization information about which parts of the window have been touched, by pretending that the entire win

manpages/vcut.1.html
vcut(1) - cuts Ogg Vorbis files (Commands - Linux man page)
vcut reads an Ogg Vorbis audio file and splits it at the given cutpoint, which is a sample number. If the cutpoint is prefixed with +, the cutpoint is an intege

manpages/CPANPLUS::Dist::Autobundle.3pm.html
CPANPLUS::Dist::Autobundle(3pm) - (unknown subject).........
CPANPLUS::Dist::Autobundle is a distribution class for installing installation snapshots as created by CPANPLUS autobundle command. All modules as mentioned in

manpages/pinky.1.html
pinky(1) - lightweight finger (Commands - Linux man page)...
-l produce long format output for the specified USERs -b omit the users home directory and shell in long format -h omit the users project file in long format -p

manpages/cdrdao.1.html
cdrdao(1) - reads and writes CDs in disc-at-once mode.......
cdrdao creates audio and data CD-Rs in disk-at-once (DAO) mode driven by a description file called toc-file. In DAO mode it is possible to create non standard t

manpages/srand48.3.html
srand48(3) - generate uniformly distributed pseudo-random nu
These functions generate pseudo-random numbers using the linear congruential algorithm and 48-bit integer arithmetic. The drand48() and erand48() functions retu

manpages/autofs.5.html
autofs(5) - Format of the automounter maps - Linux man page
The automounter maps are FILE, NIS, NISPLUS or LDAP maps referred to by the master map of the automounter (see auto.master(5)). These maps describe how file sys

manpages/git-apply.1.html
git-apply(1) - Apply a patch to files and/or to the index...
Reads the supplied diff output (i.e. a patch) and applies it to files. With the --index option the patch is also applied to the index, and with the --cached opt

manpages/SDL_SetVideoMode.3.html
SDL_SetVideoMode(3) - Set up a video mode with the specified
Set up a video mode with the specified width, height and bits-per-pixel. If bpp is 0, it is treated as the current display bits per pixel. The flags parameter i

manpages/dracut.cmdline.7.html
dracut.cmdline(7) dracut kernel command line options........
The root device used by the kernel is specified in the boot configuration file on the kernel command line, as always. The traditional root=/dev/sda1 style devic

manpages/thin_check.8.html
thin_check(8) repair thin provisioning metadata on device or
thin_check checks thin provisioning metadata created by the device-mapper thin provisioning target on a device or file. OPTIONS -q, --quiet Suppress output mess





We can't live, work or learn in freedom unless the software we use is free.