openwrt: add gettimeofday to nixio library

This commit is contained in:
Bart Van Der Meerssche 2010-12-30 23:33:01 +01:00
parent b0fd16364e
commit 0dc94a5994
1 changed files with 11 additions and 0 deletions

View File

@ -21,6 +21,16 @@
#include <errno.h>
#include <string.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 */
static const luaL_reg R[] = {
{"gettimeofday", nixio_gettimeofday},
{"nanosleep", nixio_nanosleep},
{"poll", nixio_poll},
{"poll_flags", nixio_poll_flags},