diff options
Diffstat (limited to 'unix/tclLoadOSF.c')
| -rw-r--r-- | unix/tclLoadOSF.c | 17 | 
1 files changed, 10 insertions, 7 deletions
| diff --git a/unix/tclLoadOSF.c b/unix/tclLoadOSF.c index 6515b89..377ed28 100644 --- a/unix/tclLoadOSF.c +++ b/unix/tclLoadOSF.c @@ -35,12 +35,14 @@  #include "tclInt.h"  #include <sys/types.h>  #include <loader.h> - -/* Static functions defined within this file */ -static void* FindSymbol(Tcl_Interp* interp, Tcl_LoadHandle loadHandle, -		       const char* symbol); -static void UnloadFile(Tcl_LoadHandle handle); +/* + * Static functions defined within this file. + */ + +static void *		FindSymbol(Tcl_Interp *interp, +			    Tcl_LoadHandle loadHandle, const char* symbol); +static void		UnloadFile(Tcl_LoadHandle handle);  /*   *---------------------------------------------------------------------- @@ -68,10 +70,11 @@ TclpDlopen(      Tcl_LoadHandle *loadHandle,	/* Filled with token for dynamically loaded  				 * file which will be passed back to  				 * (*unloadProcPtr)() to unload the file. */ -    Tcl_FSUnloadFileProc **unloadProcPtr) +    Tcl_FSUnloadFileProc **unloadProcPtr,  				/* Filled with address of Tcl_FSUnloadFileProc  				 * function which should be used for this  				 * file. */ +    int flags)  {      Tcl_LoadHandle newHandle;      ldr_module_t lm; @@ -105,7 +108,7 @@ TclpDlopen(      if (lm == LDR_NULL_MODULE) {  	Tcl_SetObjResult(interp, Tcl_ObjPrintf(  		"couldn't load file \"%s\": %s", -		fileName, Tcl_PosixError(interp)); +		fileName, Tcl_PosixError(interp)));  	return TCL_ERROR;      } | 
