logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Tcl_CreateCloseHandler, Tcl_DeleteCloseHandler - arrange for callbacks when channels are closed

Arguments

       Tcl_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.

       void *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 following prototype:

              typedef void Tcl_CloseProc(
                      void *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_DeleteCloseHandler does nothing if its proc and clientData arguments do not
       match the proc and clientData for a  close handler for channel.

Keywords

       callback, channel closing

Tcl                                                    7.5                          Tcl_CreateCloseHandler(3tcl)

Name

       Tcl_CreateCloseHandler, Tcl_DeleteCloseHandler - arrange for callbacks when channels are closed

See Also

close(3tcl), Tcl_Close(3tcl), Tcl_UnregisterChannel(3tcl)

Synopsis

#include<tcl.h>Tcl_CreateCloseHandler(channel,proc,clientData)

       Tcl_DeleteCloseHandler(channel,proc,clientData)

See Also