Laurent MOULIN / Mbed 2 deprecated tinypy

Dependencies:   mbed

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?

UserRevisionLine numberNew 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