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@0:4ab1392a0142, 2012-10-07 (annotated)
- Committer:
- gignops
- Date:
- Sun Oct 07 11:49:09 2012 +0000
- Revision:
- 0:4ab1392a0142
This project is an adaptation of tinypy code. The aim is to run python code on Mbed.; ; Have fun !
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| gignops | 0:4ab1392a0142 | 1 | #ifndef GC_H |
| gignops | 0:4ab1392a0142 | 2 | #define GC_H |
| gignops | 0:4ab1392a0142 | 3 | |
| gignops | 0:4ab1392a0142 | 4 | #include "tp.h" |
| gignops | 0:4ab1392a0142 | 5 | #include "list.h" |
| gignops | 0:4ab1392a0142 | 6 | #include "dict.h" |
| gignops | 0:4ab1392a0142 | 7 | |
| gignops | 0:4ab1392a0142 | 8 | void tp_grey(TP,tp_obj v); |
| gignops | 0:4ab1392a0142 | 9 | void tp_follow(TP,tp_obj v); |
| gignops | 0:4ab1392a0142 | 10 | void tp_reset(TP); |
| gignops | 0:4ab1392a0142 | 11 | void tp_gc_init(TP); |
| gignops | 0:4ab1392a0142 | 12 | void tp_gc_deinit(TP); |
| gignops | 0:4ab1392a0142 | 13 | void tp_delete(TP,tp_obj v); |
| gignops | 0:4ab1392a0142 | 14 | void tp_collect(TP); |
| gignops | 0:4ab1392a0142 | 15 | void _tp_gcinc(TP); |
| gignops | 0:4ab1392a0142 | 16 | void tp_full(TP); |
| gignops | 0:4ab1392a0142 | 17 | void tp_gcinc(TP); |
| gignops | 0:4ab1392a0142 | 18 | tp_obj tp_track(TP,tp_obj v); |
| gignops | 0:4ab1392a0142 | 19 | |
| gignops | 0:4ab1392a0142 | 20 | #endif |