summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--unix/main.c3
-rw-r--r--unix/modtime.c29
-rw-r--r--unix/mpconfigport.h4
-rw-r--r--unix/qstrdefsport.h4
4 files changed, 31 insertions, 9 deletions
diff --git a/unix/main.c b/unix/main.c
index b9b8fe0b9f..d5b04d565b 100644
--- a/unix/main.c
+++ b/unix/main.c
@@ -357,9 +357,6 @@ int main(int argc, char **argv) {
#endif
microsocket_init();
-#if MICROPY_MOD_TIME
- time_init();
-#endif
#if MICROPY_MOD_FFI
ffi_init();
#endif
diff --git a/unix/modtime.c b/unix/modtime.c
index daf72ff88a..a0d7cd0462 100644
--- a/unix/modtime.c
+++ b/unix/modtime.c
@@ -51,9 +51,26 @@ STATIC mp_obj_t mod_time_sleep(mp_obj_t arg) {
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_time_sleep_obj, mod_time_sleep);
-void time_init() {
- mp_obj_t m = mp_obj_new_module(QSTR_FROM_STR_STATIC("time"));
- mp_store_attr(m, QSTR_FROM_STR_STATIC("time"), (mp_obj_t)&mod_time_time_obj);
- mp_store_attr(m, QSTR_FROM_STR_STATIC("clock"), (mp_obj_t)&mod_time_clock_obj);
- mp_store_attr(m, QSTR_FROM_STR_STATIC("sleep"), (mp_obj_t)&mod_time_sleep_obj);
-}
+STATIC const mp_map_elem_t mp_module_time_globals_table[] = {
+ { MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_time) },
+ { MP_OBJ_NEW_QSTR(MP_QSTR_clock), (mp_obj_t)&mod_time_clock_obj },
+ { MP_OBJ_NEW_QSTR(MP_QSTR_sleep), (mp_obj_t)&mod_time_sleep_obj },
+ { MP_OBJ_NEW_QSTR(MP_QSTR_time), (mp_obj_t)&mod_time_time_obj },
+};
+
+STATIC const mp_obj_dict_t mp_module_time_globals = {
+ .base = {&mp_type_dict},
+ .map = {
+ .all_keys_are_qstrs = 1,
+ .table_is_fixed_array = 1,
+ .used = sizeof(mp_module_time_globals_table) / sizeof(mp_map_elem_t),
+ .alloc = sizeof(mp_module_time_globals_table) / sizeof(mp_map_elem_t),
+ .table = (mp_map_elem_t*)mp_module_time_globals_table,
+ },
+};
+
+const mp_obj_module_t mp_module_time = {
+ .base = { &mp_type_module },
+ .name = MP_QSTR_time,
+ .globals = (mp_obj_dict_t*)&mp_module_time_globals,
+};
diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h
index cf6e6fae26..bfbb49aee6 100644
--- a/unix/mpconfigport.h
+++ b/unix/mpconfigport.h
@@ -17,6 +17,10 @@
#define MICROPY_MOD_SYS_STDFILES (1)
#define MICROPY_ENABLE_MOD_CMATH (1)
+extern const struct _mp_obj_module_t mp_module_time;
+#define MICROPY_EXTRA_BUILTIN_MODULES \
+ { MP_OBJ_NEW_QSTR(MP_QSTR_time), (mp_obj_t)&mp_module_time }, \
+
// type definitions for the specific machine
#ifdef __LP64__
diff --git a/unix/qstrdefsport.h b/unix/qstrdefsport.h
index 42f20d2657..eb61e2a618 100644
--- a/unix/qstrdefsport.h
+++ b/unix/qstrdefsport.h
@@ -30,3 +30,7 @@ Q(fficallback)
Q(ffivar)
Q(func)
Q(var)
+
+Q(time)
+Q(clock)
+Q(sleep)