diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-07-12 11:29:33 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-07-12 11:29:33 -0700 |
commit | 15740ae6b6c8476cd1a9323ffd50f85a3c8ea245 (patch) | |
tree | f5eac0226a4e57e1383771c862a23efc0eddfb93 /eval.c | |
parent | a6f6072761d124c60793325bc512048b0f31f5a3 (diff) | |
download | txr-15740ae6b6c8476cd1a9323ffd50f85a3c8ea245.tar.gz txr-15740ae6b6c8476cd1a9323ffd50f85a3c8ea245.tar.bz2 txr-15740ae6b6c8476cd1a9323ffd50f85a3c8ea245.zip |
Support weak semantics in symbol packages.
A package is weak if it holds weak references to symbols,
meaning that if there are no references to a symbol other than
its entry in a weak package, it can be removed from the
package and reclaimed by the garbage collector.
* eval.c (eval_init): Update registrations for make-package
and sys:make-anon-package to reflect new optional argument.
* lib.c (make_package_common): New argument weak. If it is
true then both the hashes will have weak values.
(make_package, make_anon_package): New optional argument weak.
(obj_init): Add nil argument to calls to make_package. All the
standard packages are regular, not weak.
* lib.h (make_package, make_anon_package): Declarations
updated.
* txr.1: Documented.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6761,8 +6761,8 @@ void eval_init(void) reg_var(package_alist_s = intern(lit("*package-alist*"), user_package), packages); reg_var(package_s = intern(lit("*package*"), user_package), (opt_compat && opt_compat <= 190) ? user_package : public_package); - reg_fun(intern(lit("make-package"), user_package), func_n1(make_package)); - reg_fun(intern(lit("make-anon-package"), system_package), func_n0(make_anon_package)); + reg_fun(intern(lit("make-package"), user_package), func_n2o(make_package, 1)); + reg_fun(intern(lit("make-anon-package"), system_package), func_n1o(make_anon_package, 0)); reg_fun(intern(lit("find-package"), user_package), func_n1(find_package)); reg_fun(intern(lit("delete-package"), user_package), func_n1(delete_package)); reg_fun(intern(lit("merge-delete-package"), user_package), func_n2o(merge_delete_package, 1)); |