diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-10-23 21:50:49 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-10-23 21:50:49 (GMT) |
| commit | bb07461520f0abf92011983c49802ec018b9578e (patch) | |
| tree | 5c9ef484f31fe996558b26c4791947245829a42a /unix/tclLoadDl.c | |
| parent | 5df58158a461f3054d66e9973bd6c08a1b8acd16 (diff) | |
| parent | 97f8d6ceab1ab672b63516c77046867f4a8665aa (diff) | |
| download | tcl-bb07461520f0abf92011983c49802ec018b9578e.zip tcl-bb07461520f0abf92011983c49802ec018b9578e.tar.gz tcl-bb07461520f0abf92011983c49802ec018b9578e.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/tclLoadDl.c')
| -rw-r--r-- | unix/tclLoadDl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index a48aa23..9ff7657 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.c @@ -66,10 +66,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) { void *handle; Tcl_LoadHandle newHandle; |
