Changeset 16cfd8c for src/examples/gc_no_raii/src/internal/collector.c
- Timestamp:
- Apr 21, 2016, 4:54:33 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, stuck-waitfor-destruct, with_gc
- Children:
- 8a74081
- Parents:
- 8c8b614
- File:
-
- 1 edited
-
src/examples/gc_no_raii/src/internal/collector.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/examples/gc_no_raii/src/internal/collector.c
r8c8b614 r16cfd8c 1 1 #include "collector.h" 2 2 3 #i nclude <stdbool.h>4 #include <stdint.h> 5 # include <stdlib.h>3 #ifdef __cforall 4 extern "C" { 5 #endif 6 6 #include <string.h> 7 8 #include <fstream> 7 #ifdef __cforall 8 } 9 #endif 9 10 10 11 #include "state.h" … … 138 139 139 140 intptr_t* ref = &field->ptr; 140 //push_back(worklist, ref);141 push_back(worklist, ref); 141 142 142 143 field = field->next;
Note:
See TracChangeset
for help on using the changeset viewer.