diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-12 00:27:19 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-12 00:27:19 +0100 |
commit | 8c63ef187d4b07afd2cb2d0d8df6a4e537ba15b0 (patch) | |
tree | b67b61d89f67de868a3468ab1a12ce2fdfbdbad4 /unix | |
parent | 8f1931754002b0904c62e481d9dcae2f6e1913e2 (diff) | |
parent | a36a55d2cf08a5cf8084e244082975e2c10fcf94 (diff) |
Merge pull request #465 from xbe/unix-gc
unix: Fix GC not tracing .data
Diffstat (limited to 'unix')
-rw-r--r-- | unix/gccollect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/gccollect.c b/unix/gccollect.c index 33748d240..35b775bc3 100644 --- a/unix/gccollect.c +++ b/unix/gccollect.c @@ -77,7 +77,7 @@ void gc_collect(void) { //gc_dump_info(); gc_collect_start(); - // this traces .data and .bss sections + // this traces the .bss section #ifdef __CYGWIN__ #define BSS_START __bss_start__ #else |