diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-01 09:15:04 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-01 09:15:04 -0800 |
commit | 04ed380c4a389c0c21eae8e3cd35e7e44506a2e3 (patch) | |
tree | 18f2c304931497d21767eb37050b1753091623eb /lib.h | |
parent | dd40488f746cab80f33a4a30508afc4d7ace1516 (diff) | |
download | txr-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |