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.
Diff: gc.h
- Revision:
- 0:4ab1392a0142
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gc.h Sun Oct 07 11:49:09 2012 +0000 @@ -0,0 +1,20 @@ +#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