=========================================================================*\ * Test support functions \*=========================================================================*/ -------------------------------------------------------------------------*\ * Returns the time the system has been up, in secconds. \*-------------------------------------------------------------------------*/
| 183 | * Returns the time the system has been up, in secconds. |
| 184 | \*-------------------------------------------------------------------------*/ |
| 185 | static int timeout_lua_gettime(lua_State *L) |
| 186 | { |
| 187 | lua_pushnumber(L, timeout_gettime()); |
| 188 | return 1; |
| 189 | } |
| 190 | |
| 191 | /*-------------------------------------------------------------------------*\ |
| 192 | * Sleep for n seconds. |
nothing calls this directly
no test coverage detected