加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
time.c 537 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* SPDX-License-Identifier: MIT */
/*
* Author: Jianhui Zhao <zhaojh329@gmail.com>
*/
#include "eco.h"
/* returns the Unix time, the number of seconds elapsed since January 1, 1970 UTC */
static int lua_ev_now(lua_State *L)
{
struct eco_context *ctx = eco_get_context(L);
ev_now_update(ctx->loop);
lua_pushnumber(L, ev_now(ctx->loop));
return 1;
}
static const luaL_Reg funcs[] = {
{"now", lua_ev_now},
{NULL, NULL}
};
int luaopen_eco_core_time(lua_State *L)
{
luaL_newlib(L, funcs);
return 1;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化