Tcl Library Procedures Tcl_CreateCloseHandler(3TCL)
_________________________________________________________________
NAME
Tcl_CreateCloseHandler, Tcl_DeleteCloseHandler - arrange for
callbacks when channels are closedSYNOPSIS
#include
voidTcl_CreateCloseHandler(channel, proc, clientData)
voidTcl_DeleteCloseHandler(channel, proc, clientData)
ARGUMENTSTcl_Channel channel (in) The channel for
which to create or delete a close callback.Tcl_CloseProc *proc (in) The procedure to
call as the call-
back.ClientData clientData (in) Arbitrary one-word
value to pass to proc._________________________________________________________________
DESCRIPTION
Tcl_CreateCloseHandler arranges for proc to be called when
channel is closed with Tcl_Close or Tcl_UnregisterChannel,
or using the Tcl close command. Proc should match the fol-
lowing prototype:typedef void Tcl_CloseProc(
ClientData clientData); The clientData is the same as the value provided in the callto Tcl_CreateCloseHandler.
Tcl_DeleteCloseHandler removes a close callback for channel.
The proc and clientData identify which close callback toremove; Tcl_DeleteCloseHandler does nothing if its proc and
clientData arguments do not match the proc and clientData for a close handler for channel. Tcl Last change: 7.5 1Tcl Library Procedures Tcl_CreateCloseHandler(3TCL)
SEE ALSO
close(1T), Tcl_Close(3TCL), Tcl_UnregisterChannel(3TCL)
KEYWORDS callback, channel closingATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:_______________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE|
|____________________|__________________|_
| Availability | runtime/tcl-8 |
|____________________|__________________|_
| Interface Stability| Uncommitted ||____________________|_________________|
NOTES Source for Tcl is available on http://opensolaris.org. Tcl Last change: 7.5 2