mirror of
https://codeberg.org/andyscott/marCsweep.git
synced 2024-11-09 13:50:51 -05:00
16 lines
387 B
C
16 lines
387 B
C
#ifndef GC_H
|
|
#define GC_H
|
|
|
|
// Marks a single reference if it is still in use
|
|
void mark(struct garbageObject *obj);
|
|
|
|
// Marks all references that are still in use
|
|
void markAll(struct virtualMachine *vm);
|
|
|
|
// Deletes references that are no longer in use
|
|
void sweep(struct virtualMachine *vm);
|
|
|
|
// Marks and Sweeps all references
|
|
void collect(struct virtualMachine *vm);
|
|
|
|
#endif /* GC_H */
|