diff options
author | Damien George <damien.p.george@gmail.com> | 2016-04-22 22:52:33 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-06-28 11:28:48 +0100 |
commit | 27cc07721b3c3c2d0b9c8678c8a3ddc7fe96cd97 (patch) | |
tree | 38016a7b7e2f29c615bfc0dc14261b8ec0bf0173 /py/builtin.h | |
parent | 330165a2cc9a0d4d5d00f13f851412c25d5f4ed2 (diff) | |
download | micropython-27cc07721b3c3c2d0b9c8678c8a3ddc7fe96cd97.tar.gz micropython-27cc07721b3c3c2d0b9c8678c8a3ddc7fe96cd97.zip |
py: Add basic _thread module, with ability to start a new thread.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h index 349f49682e..cd1be3ab88 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -94,6 +94,7 @@ extern const mp_obj_module_t mp_module_micropython; extern const mp_obj_module_t mp_module_ustruct; extern const mp_obj_module_t mp_module_sys; extern const mp_obj_module_t mp_module_gc; +extern const mp_obj_module_t mp_module_thread; extern const mp_obj_dict_t mp_module_builtins_globals; |