mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-10 06:02:01 +00:00
12 lines
No EOL
360 B
C
12 lines
No EOL
360 B
C
#include "model.h"
|
|
|
|
void initGarbageCollector();
|
|
//void addPendingReference(Variable_t* ref);
|
|
void processPendingReferences();
|
|
void exitGarbageCollector();
|
|
//void removePendingReference(Variable_t* ref);
|
|
|
|
void modReference(Variable_t* ref, u8 add);
|
|
|
|
#define removePendingReference(ref) modReference(ref, 0)
|
|
#define addPendingReference(ref) modReference(ref, 1) |