summaryrefslogtreecommitdiff
path: root/py/runtime.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-20 02:01:50 -0800
committerDamien George <damien.p.george@gmail.com>2014-01-20 02:01:50 -0800
commit589233622ccbed5d7684890a181ac7e61839f630 (patch)
tree0965140285b1c79bb6ae3481d293fb2096f24e8b /py/runtime.c
parent164774c1c1195a16757652730ccc1cac74353f42 (diff)
parent440cc3f028c7eff54f6f713182c55c5e8b205bab (diff)
Merge pull request #198 from pfalcon/expose-memstat
Expose memory stats functions via "micropython" module.
Diffstat (limited to 'py/runtime.c')
-rw-r--r--py/runtime.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/py/runtime.c b/py/runtime.c
index 830bcc6aa..09e4237af 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -153,15 +153,18 @@ void rt_init(void) {
mp_map_add_qstr(&map_builtins, MP_QSTR_bytearray, (mp_obj_t)&mp_builtin_bytearray_obj);
#if MICROPY_CPYTHON_COMPAT
- // Add (empty) micropython module, so it was possible to "import micropython",
- // which can be a placeholder module on CPython.
- mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython"));
- rt_store_name(qstr_from_str_static("micropython"), m_mp);
-
// Precreate sys module, so "import sys" didn't throw exceptions.
mp_obj_new_module(qstr_from_str_static("sys"));
#endif
+ mp_obj_t m_mp = mp_obj_new_module(qstr_from_str_static("micropython"));
+ rt_store_name(qstr_from_str_static("micropython"), m_mp);
+#if MICROPY_MEM_STATS
+ rt_store_attr(m_mp, qstr_from_str_static("mem_total"), (mp_obj_t)&mp_builtin_mem_total_obj);
+ rt_store_attr(m_mp, qstr_from_str_static("mem_current"), (mp_obj_t)&mp_builtin_mem_current_obj);
+ rt_store_attr(m_mp, qstr_from_str_static("mem_peak"), (mp_obj_t)&mp_builtin_mem_peak_obj);
+#endif
+
next_unique_code_id = 1; // 0 indicates "no code"
unique_codes_alloc = 0;
unique_codes = NULL;