summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadShl.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-23 21:50:49 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-23 21:50:49 (GMT)
commit966e9c347748c8454fe01e5bc14dcd705d8c7285 (patch)
tree5c9ef484f31fe996558b26c4791947245829a42a /unix/tclLoadShl.c
parente5c614fc2d6ceed8aaf1c45cc4ba15120d1cd2f2 (diff)
parent7927604b9490feecc8f9e5331b8e6e2cb5005b19 (diff)
downloadtcl-966e9c347748c8454fe01e5bc14dcd705d8c7285.zip
tcl-966e9c347748c8454fe01e5bc14dcd705d8c7285.tar.gz
tcl-966e9c347748c8454fe01e5bc14dcd705d8c7285.tar.bz2
Add "flags" parameter from Tcl_LoadFile to to various internal functions, so these flags are available through the whole filesystem for (future) internal use
Diffstat (limited to 'unix/tclLoadShl.c')
-rw-r--r--unix/tclLoadShl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c
index 7b80bcc..f73c164 100644
--- a/unix/tclLoadShl.c
+++ b/unix/tclLoadShl.c
@@ -57,10 +57,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;