diff options
Diffstat (limited to 'unix/tclLoadShl.c')
| -rw-r--r-- | unix/tclLoadShl.c | 40 | 
1 files changed, 16 insertions, 24 deletions
| diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index 9656983..4be3d7b 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.c @@ -12,24 +12,15 @@   */  #include <dl.h> +#include "tclInt.h"  /* - * On some HP machines, dl.h defines EXTERN; remove that definition. + * Static functions defined within this file.   */ -#ifdef EXTERN -#   undef EXTERN -#endif - -#include "tclInt.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 void *		FindSymbol(Tcl_Interp *interp, +			    Tcl_LoadHandle loadHandle, const char *symbol); +static void		UnloadFile(Tcl_LoadHandle handle);  /*   *---------------------------------------------------------------------- @@ -57,10 +48,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)  {      shl_t handle;      Tcl_LoadHandle newHandle; @@ -100,8 +92,9 @@ TclpDlopen(      }      if (handle == NULL) { -	Tcl_AppendResult(interp, "couldn't load file \"", fileName, "\": ", -		Tcl_PosixError(interp), (char *) NULL); +	Tcl_SetObjResult(interp, Tcl_ObjPrintf( +		"couldn't load file \"%s\": %s", +		fileName, Tcl_PosixError(interp)));  	return TCL_ERROR;      }      newHandle = ckalloc(sizeof(*newHandle)); @@ -136,7 +129,7 @@ FindSymbol(  {      Tcl_DString newName;      Tcl_PackageInitProc *proc = NULL; -    shl_t handle = (shl_t)(loadHandle->clientData); +    shl_t handle = (shl_t) loadHandle->clientData;      /*       * Some versions of the HP system software still use "_" at the beginning @@ -146,7 +139,7 @@ FindSymbol(      if (shl_findsym(&handle, symbol, (short) TYPE_PROCEDURE,  	    (void *) &proc) != 0) {  	Tcl_DStringInit(&newName); -	Tcl_DStringAppend(&newName, "_", 1); +	TclDStringAppendLiteral(&newName, "_");  	Tcl_DStringAppend(&newName, symbol, -1);  	if (shl_findsym(&handle, Tcl_DStringValue(&newName),  		(short) TYPE_PROCEDURE, (void *) &proc) != 0) { @@ -155,9 +148,9 @@ FindSymbol(  	Tcl_DStringFree(&newName);      }      if (proc == NULL && interp != NULL) { -	Tcl_ResetResult(interp); -	Tcl_AppendResult(interp, "cannot find symbol\"", symbol,  -			 "\": ", Tcl_PosixError(interp), NULL); +	Tcl_SetObjResult(interp, Tcl_ObjPrintf( +		"cannot find symbol \"%s\": %s", +		symbol, Tcl_PosixError(interp)));      }      return proc;  } @@ -186,9 +179,8 @@ UnloadFile(  				 * TclpDlopen(). The loadHandle is a token  				 * that represents the loaded file. */  { -    shl_t handle; +    shl_t handle = (shl_t) loadHandle->clientData; -    handle = (shl_t) (loadHandle -> clientData);      shl_unload(handle);      ckfree(loadHandle);  } | 
