summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2021-04-03 17:58:03 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2021-04-03 17:58:03 (GMT)
commit7f4cc308f37a5729cb679b8c859e8dba993095ca (patch)
treeb9c50fbd69931534cdd4560752203aae887f4330
parent42c960506de8d8e50f567cd5a0729bb61175fcd7 (diff)
downloadtcl-7f4cc308f37a5729cb679b8c859e8dba993095ca.zip
tcl-7f4cc308f37a5729cb679b8c859e8dba993095ca.tar.gz
tcl-7f4cc308f37a5729cb679b8c859e8dba993095ca.tar.bz2
Update code comments.
-rw-r--r--generic/tclNamesp.c57
1 files changed, 24 insertions, 33 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c
index 3ec0fb5..1d20a77 100644
--- a/generic/tclNamesp.c
+++ b/generic/tclNamesp.c
@@ -884,22 +884,20 @@ Tcl_CreateNamespace(
* Tcl_DeleteNamespace --
*
* Deletes a namespace and all of the commands, variables, and other
- * namespaces within it.
+ * namespaces within it, and disassociates the namespace from its parent.
*
* Results:
* None.
*
* Side effects:
- * When a namespace is deleted, it is automatically removed as a child of
- * its parent namespace. Also, all its commands, variables and child
- * namespaces are deleted.
+ * See description.
*
*----------------------------------------------------------------------
*/
void
Tcl_DeleteNamespace(
- Tcl_Namespace *namespacePtr)/* Points to the namespace to delete. */
+ Tcl_Namespace *namespacePtr) /* Points to the namespace to delete. */
{
Namespace *nsPtr = (Namespace *) namespacePtr;
Interp *iPtr = (Interp *) nsPtr->interp;
@@ -917,7 +915,7 @@ Tcl_DeleteNamespace(
/*
* Before marking the namespace as dying, give anyone interested, notably
* TclOO, a chance to use this namespace normally despite the fact that
- * the namespace is going to go. Allows the calling of destructors. Only
+ * the namespace is going to go. Allows the calling of destructors. Only
* called once (unless re-established by the called function). [Bug
* 2950259]
*
@@ -936,13 +934,13 @@ Tcl_DeleteNamespace(
}
/*
- * Delete all coroutines now, breaking the circular ref cycle between
- * the namespace and the coroutine command [Bug 2724403]. This code is
+ * Delete all coroutines now to break the circular ref cycle between
+ * the namespace and any coroutines [Bug 2724403]. This code is
* essentially duplicated in TclTeardownNamespace() for all other
* commands. Don't optimize to Tcl_NextHashEntry() because of traces.
*
- * Maybe later avoid traversing the ns's command list by keeping a
- * separate list of coros.
+ * Maybe later avoid traversing the command table by keeping a
+ * separate list of coroutines.
*/
for (entryPtr = Tcl_FirstHashEntry(&nsPtr->cmdTable, &search);
@@ -987,20 +985,14 @@ Tcl_DeleteNamespace(
}
/*
- * If the namespace is on the call frame stack, it is marked as "dying"
- * (NS_DYING is OR'd into its flags): the namespace can't be looked up by
- * name but its commands and variables are still usable by those active
- * call frames. When all active call frames referring to the namespace
- * have been popped from the Tcl stack, Tcl_PopCallFrame calls this
- * function again to delete everything in the namespace. If no nsName
- * objects refer to the namespace (i.e., if its refCount is zero), its
- * commands and variables are deleted and the storage for its namespace
- * structure is freed. Otherwise, if its refCount is nonzero, the
- * namespace's commands and variables are deleted but the structure isn't
- * freed. Instead, NS_DEAD is OR'd into the structure's flags to allow the
- * namespace resolution code to recognize that the namespace is "deleted".
- * The structure's storage is freed by FreeNsNameInternalRep when its
- * refCount reaches 0.
+ * If the namespace is on the call frame stack, add the flag NS_DYING,
+ * after the namesapce can not be reached by name, but its commands and
+ * variables are still usable from in those active call frames. When all
+ * active call frames referring to the namespace have been popped from the
+ * Tcl stack, Tcl_PopCallFrame calls this function again to delete
+ * everything in the namespace. Its commands and variables are deleted.
+ * When the structure's refCount reaches 0 FreeNsNameInternalRep frees the
+ * storage for the structure.
*/
if (nsPtr->activationCount - (nsPtr == globalNsPtr) > 0) {
@@ -1016,11 +1008,10 @@ Tcl_DeleteNamespace(
nsPtr->parentPtr = NULL;
} else if (!(nsPtr->flags & NS_KILLED)) {
/*
- * Delete the namespace and everything in it. If this is the global
- * namespace, then clear it but don't free its storage unless the
- * interpreter is being torn down. Set the NS_KILLED flag to avoid
- * recursive calls here - if the namespace is really in the process of
- * being deleted, ignore any second call.
+ * Time to actually delete the namespace and everything in it. If this
+ * is the global namespace, clear it but don't free its storage unless
+ * the interpreter is being deleted. Set the NS_KILLED flag to prevent
+ * additional entry to this section.
*/
nsPtr->flags |= (NS_DYING|NS_KILLED);
@@ -1031,8 +1022,8 @@ Tcl_DeleteNamespace(
/*
* If this is the global namespace, then it may have residual
* "errorInfo" and "errorCode" variables for errors that occurred
- * while it was being torn down. Try to clear the variable list
- * one last time.
+ * while it was being torn down. Try one last time to clear the
+ * variable list.
*/
TclDeleteNamespaceVars(nsPtr);
@@ -1057,8 +1048,8 @@ Tcl_DeleteNamespace(
EstablishErrorCodeTraces(NULL, nsPtr->interp, NULL, NULL, 0);
/*
- * We didn't really kill it, so remove the KILLED marks, so it can
- * get killed later, avoiding mem leaks.
+ * The namespace is not deleted yet. Remove the KILLED marks, so it
+ * can be deleted later, avoiding mem leaks.
*/
nsPtr->flags &= ~(NS_DYING|NS_KILLED);