summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-22 17:25:54 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-22 17:25:54 (GMT)
commit84464b239cabe79bffe2f747fe1d63e0c4ee0988 (patch)
tree2d83293aaafcb7fe665ed4c8309d6d02f193c68b /generic
parentf13079289a274d0195bb0a57b34fa61bd1775e28 (diff)
parent401229c959cd2f8b13524d085db2ba76f3384e31 (diff)
downloadtcl-84464b239cabe79bffe2f747fe1d63e0c4ee0988.zip
tcl-84464b239cabe79bffe2f747fe1d63e0c4ee0988.tar.gz
tcl-84464b239cabe79bffe2f747fe1d63e0c4ee0988.tar.bz2
Merge 9.0
Diffstat (limited to 'generic')
-rw-r--r--generic/tclLoad.c25
1 files changed, 20 insertions, 5 deletions
diff --git a/generic/tclLoad.c b/generic/tclLoad.c
index cca5b7a..88f4724 100644
--- a/generic/tclLoad.c
+++ b/generic/tclLoad.c
@@ -536,7 +536,7 @@ Tcl_LoadObjCmd(
*
* Tcl_UnloadObjCmd --
*
- * This function is invoked to process the "unload" Tcl command. See the
+ * Implements the the "unload" Tcl command. See the
* user documentation for details on what it does.
*
* Results:
@@ -754,6 +754,23 @@ Tcl_UnloadObjCmd(
return code;
}
+
+/*
+ *----------------------------------------------------------------------
+ *
+ * UnloadLibrary --
+ *
+ * Unloads a library from an interpreter, and also from the process if it
+ * is unloadable, i.e. if it provides an "unload" function.
+ *
+ * Results:
+ * A standard Tcl result.
+ *
+ * Side effects:
+ * See description.
+ *
+ *----------------------------------------------------------------------
+ */
static int
UnloadLibrary(
Tcl_Interp *interp,
@@ -874,11 +891,9 @@ UnloadLibrary(
}
/*
- * The unload function executed fine. Examine the reference count to see
- * if we unload the DLL.
+ * The unload function was called succesfully.
*/
-
Tcl_MutexLock(&libraryMutex);
if (Tcl_IsSafe(target)) {
libraryPtr->safeInterpRefCount--;
@@ -907,7 +922,7 @@ UnloadLibrary(
code = TCL_OK;
if (libraryPtr->safeInterpRefCount <= 0 && libraryPtr->interpRefCount <= 0
- && !keepLibrary) {
+ && (unloadProc != NULL) && !keepLibrary) {
/*
* Unload the shared library from the application memory...
*/