*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages -> Tcl/calldel (3)              
Title
Content
Arch
Section
 

Contents


Tcl_CallWhenDeleted(3Tcl)			     Tcl_CallWhenDeleted(3Tcl)


NAME    [Toc]    [Back]

     Tcl_CallWhenDeleted, Tcl_DontCallWhenDeleted - Arrange for	callback when
     interpreter is deleted

SYNOPSIS    [Toc]    [Back]

     #include <tcl.h>

     Tcl_CallWhenDeleted(interp, proc, clientData)

     Tcl_DontCallWhenDeleted(interp, proc, clientData)

ARGUMENTS    [Toc]    [Back]

     Tcl_Interp		    *interp	 (in)	   Interpreter with which to
						   associated callback.

     Tcl_InterpDeleteProc   *proc	 (in)	   Procedure to	call when
						   interp is deleted.

     ClientData		    clientData	 (in)	   Arbitrary one-word value to
						   pass	to proc.

DESCRIPTION    [Toc]    [Back]

     Tcl_CallWhenDeleted arranges for proc to be called	by Tcl_DeleteInterp
     if/when interp is deleted at some future time.  Proc will be invoked just
     before the	interpreter is deleted,	but the	interpreter will still be
     valid at the time of the call.  Proc should have arguments	and result
     that match	the type Tcl_InterpDeleteProc:
	  typedef int Tcl_InterpDeleteProc(
	       ClientData clientData,
	       Tcl_Interp *interp);
     The clientData and	interp parameters are copies of	the clientData and
     interp arguments given to Tcl_CallWhenDeleted.  Typically,	clientData
     points to an application-specific data structure that proc	uses to
     perform cleanup when an interpreter is about to go	away.  Proc does not
     return a value.

     Tcl_DontCallWhenDeleted cancels a previous	call to	Tcl_CallWhenDeleted
     with the same arguments, so that proc won't be called after all when
     interp is deleted.	 If there is no	deletion callback that matches interp,
     proc, and clientData then the call	to Tcl_DontCallWhenDeleted has no
     effect.

KEYWORDS    [Toc]    [Back]

     callback, delete, interpreter


									PPPPaaaaggggeeee 1111
[ Back ]
 Similar pages
Name OS Title
undelete NetBSD attempt to recover a deleted file
undelete FreeBSD attempt to recover a deleted file
csa_call_callbacks HP-UX force the invocation of the callback functions associated with the specified callback list(s)
crtselhdlr IRIX arrange to handle requests for a selection
crttrace IRIX arrange for command execution to be traced
bind IRIX Arrange for X events to invoke Tcl scripts
managegeom IRIX arrange to handle geometry requests for a window
wishx IRIX Tcl language interpreter with Tk
perlrun OpenBSD how to execute the Perl interpreter
tclsh IRIX Simple shell containing Tcl interpreter
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service