aboutsummaryrefslogtreecommitdiff
path: root/py/stackctrl.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
commit4abff7500fb05430a2ce952a2430d4d0ba16047e (patch)
treeb88ab89a41da9d9d71ad95157a4cf9bbaffb11e6 /py/stackctrl.c
parent4d91723587b27c5a1da7e759e3f761a16b35d4bd (diff)
py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.
Part of code cleanup, working towards resolving issue #50.
Diffstat (limited to 'py/stackctrl.c')
-rw-r--r--py/stackctrl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/py/stackctrl.c b/py/stackctrl.c
index 724d54a1b..2ee5dd647 100644
--- a/py/stackctrl.c
+++ b/py/stackctrl.c
@@ -40,7 +40,7 @@ void mp_stack_ctrl_init() {
stack_top = (char*)&stack_dummy;
}
-uint mp_stack_usage() {
+mp_uint_t mp_stack_usage() {
// Assumes descending stack
volatile int stack_dummy;
return stack_top - (char*)&stack_dummy;
@@ -48,9 +48,9 @@ uint mp_stack_usage() {
#if MICROPY_STACK_CHECK
-static uint stack_limit = 10240;
+static mp_uint_t stack_limit = 10240;
-void mp_stack_set_limit(uint limit) {
+void mp_stack_set_limit(mp_uint_t limit) {
stack_limit = limit;
}