summaryrefslogtreecommitdiffstatshomepage
path: root/unix/time.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-02 13:13:29 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-02 13:13:29 +0000
commit09e1f43200ec28082456042a58d9f39f483f3ad0 (patch)
treea61fff4a0fbad891177d64bf311c9cb0882b4e1b /unix/time.c
parentcd82e02e84df5f9f2f3082d865beae25217af2a1 (diff)
parentea2509d92cbb222854ceb0b323b616b807dd221b (diff)
downloadmicropython-09e1f43200ec28082456042a58d9f39f483f3ad0.tar.gz
micropython-09e1f43200ec28082456042a58d9f39f483f3ad0.zip
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'unix/time.c')
-rw-r--r--unix/time.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/unix/time.c b/unix/time.c
new file mode 100644
index 0000000000..9d8cf497c4
--- /dev/null
+++ b/unix/time.c
@@ -0,0 +1,30 @@
+#include <string.h>
+#include <time.h>
+
+#include "misc.h"
+#include "mpconfig.h"
+#include "qstr.h"
+#include "obj.h"
+#include "runtime.h"
+
+static mp_obj_t mod_time_time() {
+ return mp_obj_new_int((machine_int_t)time(NULL));
+}
+static MP_DEFINE_CONST_FUN_OBJ_0(mod_time_time_obj, mod_time_time);
+
+// Note: this is deprecated since CPy3.3, but pystone still uses it.
+static mp_obj_t mod_time_clock() {
+// return mp_obj_new_int((machine_int_t)clock());
+ // POSIX requires CLOCKS_PER_SEC equals 1000000, so that's what we assume
+ // float cannot represent full range of int32 precisely, so we pre-divide
+ // int to reduce resolution, and then actually do float division hoping
+ // to preserve integer part resolution.
+ return mp_obj_new_float((float)(clock() / 1000) / 1000.0);
+}
+static MP_DEFINE_CONST_FUN_OBJ_0(mod_time_clock_obj, mod_time_clock);
+
+void time_init() {
+ mp_obj_t m = mp_obj_new_module(QSTR_FROM_STR_STATIC("time"));
+ rt_store_attr(m, QSTR_FROM_STR_STATIC("time"), (mp_obj_t)&mod_time_time_obj);
+ rt_store_attr(m, QSTR_FROM_STR_STATIC("clock"), (mp_obj_t)&mod_time_clock_obj);
+}