Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
gc.h
- Committer:
- gignops
- Date:
- 2012-10-07
- Revision:
- 0:4ab1392a0142
File content as of revision 0:4ab1392a0142:
#ifndef GC_H
#define GC_H
#include "tp.h"
#include "list.h"
#include "dict.h"
void tp_grey(TP,tp_obj v);
void tp_follow(TP,tp_obj v);
void tp_reset(TP);
void tp_gc_init(TP);
void tp_gc_deinit(TP);
void tp_delete(TP,tp_obj v);
void tp_collect(TP);
void _tp_gcinc(TP);
void tp_full(TP);
void tp_gcinc(TP);
tp_obj tp_track(TP,tp_obj v);
#endif