diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-23 21:50:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-23 21:50:49 (GMT) |
commit | 966e9c347748c8454fe01e5bc14dcd705d8c7285 (patch) | |
tree | 5c9ef484f31fe996558b26c4791947245829a42a /unix/tclLoadNext.c | |
parent | e5c614fc2d6ceed8aaf1c45cc4ba15120d1cd2f2 (diff) | |
parent | 7927604b9490feecc8f9e5331b8e6e2cb5005b19 (diff) | |
download | tcl-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/tclLoadNext.c')
-rw-r--r-- | unix/tclLoadNext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadNext.c b/unix/tclLoadNext.c index 06df2db..f5911f8 100644 --- a/unix/tclLoadNext.c +++ b/unix/tclLoadNext.c @@ -46,10 +46,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; struct mach_header *header; |