summaryrefslogtreecommitdiffstatshomepage
path: root/py/stackctrl.h
Commit message (Collapse)AuthorAge
* py/stackctrl: Add mp_stack_set_top() to explicitly set stack top value.Paul Sokolovsky2016-03-07
| | | | Useful for embedded targets with fixed stack layout.
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
| | | | Addresses issue #1022.
* py: Fix function type: () -> (void).Damien George2014-12-10
|
* py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George2014-08-30
| | | | Part of code cleanup, working towards resolving issue #50.
* stackctrl: Add "mp_" prefix.Paul Sokolovsky2014-07-01
|
* py: Add portable framework to query/check C stack usage.Paul Sokolovsky2014-06-27
Such mechanism is important to get stable Python functioning, because Python function calling is handled with C stack. The idea is to sprinkle STACK_CHECK() calls in places where there can be C recursion. TODO: Add more STACK_CHECK()'s.