pike.git/
src/
gc.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-21
2014-08-21 18:11:55 by Martin Nilsson <nilsson@opera.com>
3b54e5516f34132abcab47c2ce48c0149ffca1ee (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
Added void to zero argument functions.
1760:
#define CHECK_MARK_QUEUE_EMPTY() assert (!gc_mark_first)
-
void gc_mark_run_queue()
+
void gc_mark_run_queue(
void
)
{ struct gc_queue_block *b;
1779:
gc_mark_last=0; }
-
void gc_mark_discard_queue()
+
void gc_mark_discard_queue(
void
)
{ struct gc_queue_block *b = gc_mark_first; while (b)