openwrt: add gettimeofday to nixio library
This commit is contained in:
parent
b0fd16364e
commit
0dc94a5994
|
@ -21,6 +21,16 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
|
||||||
|
|
||||||
|
static int nixio_gettimeofday(lua_State *L) {
|
||||||
|
struct timeval tv;
|
||||||
|
gettimeofday(&tv, NULL);
|
||||||
|
nixio__pushnumber(L, tv.tv_sec);
|
||||||
|
nixio__pushnumber(L, tv.tv_usec);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -188,6 +198,7 @@ static int nixio_poll(lua_State *L) {
|
||||||
|
|
||||||
/* module table */
|
/* module table */
|
||||||
static const luaL_reg R[] = {
|
static const luaL_reg R[] = {
|
||||||
|
{"gettimeofday", nixio_gettimeofday},
|
||||||
{"nanosleep", nixio_nanosleep},
|
{"nanosleep", nixio_nanosleep},
|
||||||
{"poll", nixio_poll},
|
{"poll", nixio_poll},
|
||||||
{"poll_flags", nixio_poll_flags},
|
{"poll_flags", nixio_poll_flags},
|
||||||
|
|
Loading…
Reference in New Issue