mirror of
https://codeberg.org/andyscott/marCsweep.git
synced 2024-11-09 13:50:51 -05:00
13 lines
291 B
C
13 lines
291 B
C
#ifndef GC_H
|
|
#define GC_H
|
|
|
|
// Marks references that are still in use
|
|
void mark(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 */
|