Query: tcl_createclosehandler
OS: opendarwin
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Tcl_CreateCloseHandler(3) Tcl Library Procedures Tcl_CreateCloseHandler(3) __________________________________________________________________________________________________________________________________________________NAMETcl_CreateCloseHandler, Tcl_DeleteCloseHandler - arrange for callbacks when channels are closedSYNOPSIS#include <tcl.h> void Tcl_CreateCloseHandler(channel, proc, clientData) void Tcl_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 callback. ClientData clientData (in) Arbitrary one-word value to pass to proc. _________________________________________________________________DESCRIPTIONTcl_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 following prototype: typedef void Tcl_CloseProc( ClientData clientData); The clientData is the same as the value provided in the call to Tcl_CreateCloseHandler. Tcl_DeleteCloseHandler removes a close callback for channel. The proc and clientData identify which close callback to remove; Tcl_Delete- CloseHandler does nothing if its proc and clientData arguments do not match the proc and clientData for a close handler for channel.SEE ALSOclose(n), Tcl_Close(3), Tcl_UnregisterChannel(3)KEYWORDScallback, channel closing Tcl 7.5 Tcl_CreateCloseHandler(3)
Related Man Pages |
---|
tcl_createclosehandler(3) - mojave |
tcl_deleteclosehandler(3) - opendarwin |
tcl_createclosehandler(3) - centos |
tcl_deleteclosehandler(3) - centos |
tcl_createclosehandler(3) - osx |
Similar Topics in the Unix Linux Community |
---|
about /proc |
The /proc Filesystems |
how to close an .app without using Kill |
Change the file name and copy old file content to new file names. |
Combining awk command to make it more efficient |