[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 33/42: Remove GOOPS random state
From: |
Andy Wingo |
Subject: |
[Guile-commits] 33/42: Remove GOOPS random state |
Date: |
Sat, 10 Jan 2015 00:03:15 +0000 |
wingo pushed a commit to branch wip-goops-refactor
in repository guile.
commit f4464fef577fa9277b9c5ad1ed5f0e8de5321b82
Author: Andy Wingo <address@hidden>
Date: Wed Jan 7 16:31:56 2015 -0500
Remove GOOPS random state
* libguile/goops.c: Remove GOOPS random state, now that there are no
more hashsets.
---
libguile/goops.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/libguile/goops.c b/libguile/goops.c
index 278d30f..9d5cf7a 100644
--- a/libguile/goops.c
+++ b/libguile/goops.c
@@ -109,7 +109,6 @@ SCM_VARIABLE (scm_var_make_extended_generic,
"make-extended-generic");
#define SCM_GOOPS_UNBOUNDP(x) (scm_is_eq (x, SCM_GOOPS_UNBOUND))
static int goops_loaded_p = 0;
-static scm_t_rstate *goops_rstate;
/* These variables are filled in by the object system when loaded. */
static SCM class_boolean, class_char, class_pair;
@@ -1707,8 +1706,6 @@ scm_init_goops_builtins (void *unused)
{
scm_module_goops = scm_current_module ();
- goops_rstate = scm_c_make_rstate ("GOOPS", 5);
-
hell = scm_calloc (hell_size * sizeof (*hell));
hell_mutex = scm_make_mutex ();
- [Guile-commits] 20/42: Remove unreachable code in scm_setter, (continued)
- [Guile-commits] 20/42: Remove unreachable code in scm_setter, Andy Wingo, 2015/01/09
- [Guile-commits] 02/42: Deprecate C interfaces scm_compute_applicable_methods, scm_find_method, Andy Wingo, 2015/01/09
- [Guile-commits] 23/42: Remove unused CPP defines naming <method> slots, Andy Wingo, 2015/01/09
- [Guile-commits] 27/42: Remove scm_at_assert_bound_ref, Andy Wingo, 2015/01/09
- [Guile-commits] 28/42: Remove scm_assert_bound, Andy Wingo, 2015/01/09
- [Guile-commits] 30/42: More unused code removal in GOOPS, Andy Wingo, 2015/01/09
- [Guile-commits] 26/42: Remove hashset slots from GOOPS classes, Andy Wingo, 2015/01/09
- [Guile-commits] 29/42: Remove private var_no_applicable_method capture, Andy Wingo, 2015/01/09
- [Guile-commits] 22/42: Remove unused `default-slot-definition-class' <class> slot, Andy Wingo, 2015/01/09
- [Guile-commits] 31/42: Remove unused union scm_t_debug_info, Andy Wingo, 2015/01/09
- [Guile-commits] 33/42: Remove GOOPS random state,
Andy Wingo <=
- [Guile-commits] 35/42: Statically compute offsets for slots of <class> in Scheme, Andy Wingo, 2015/01/09
- [Guile-commits] 24/42: Generics with setters have <applicable-struct-with-setter> layout, Andy Wingo, 2015/01/09
- [Guile-commits] 11/42: Move GOOPS boot to Scheme, Andy Wingo, 2015/01/09
- [Guile-commits] 34/42: Refactor to <class> slot computation, Andy Wingo, 2015/01/09
- [Guile-commits] 42/42: Remove TEST_CHANGE_CLASS, Andy Wingo, 2015/01/09
- [Guile-commits] 41/42: Remove pure-generic?, Andy Wingo, 2015/01/09
- [Guile-commits] 40/42: Goops slot-unbound / slot-missing cleanups, Andy Wingo, 2015/01/09
- [Guile-commits] 38/42: Port method and generic accessors to Scheme, Andy Wingo, 2015/01/09
- [Guile-commits] 39/42: Move slot-ref et al to Scheme, Andy Wingo, 2015/01/09
- [Guile-commits] 37/42: <class> accessors implemented in Scheme, Andy Wingo, 2015/01/09