summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-01 09:15:04 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-01 09:15:04 -0800
commit04ed380c4a389c0c21eae8e3cd35e7e44506a2e3 (patch)
tree18f2c304931497d21767eb37050b1753091623eb /lib.h
parentdd40488f746cab80f33a4a30508afc4d7ace1516 (diff)
downloadtxr-04ed380c4a389c0c21eae8e3cd35e7e44506a2e3.tar.gz
txr-04ed380c4a389c0c21eae8e3cd35e7e44506a2e3.tar.bz2
txr-04ed380c4a389c0c21eae8e3cd35e7e44506a2e3.zip
Bug ID 27899: Garbage collection problem: method of locating stack
bottom is unreliable due to the unpredictable allocation order of local variables.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.h b/lib.h
index 81ef1dce..45b454f5 100644
--- a/lib.h
+++ b/lib.h
@@ -312,7 +312,7 @@ obj_t *sort(obj_t *list, obj_t *lessfun, obj_t *keyfun);
void obj_print(obj_t *obj, obj_t *stream);
void obj_pprint(obj_t *obj, obj_t *stream);
void init(const char *progname, void *(*oom_realloc)(void *, size_t),
- obj_t **maybe_bottom_0, obj_t **maybe_bottom_1);
+ obj_t **stack_bottom);
void dump(obj_t *obj, obj_t *stream);
obj_t *snarf(obj_t *in);
obj_t *match(obj_t *spec, obj_t *data);