aboutsummaryrefslogtreecommitdiff
path: root/src/timeout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/timeout.h')
-rw-r--r--src/timeout.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/timeout.h b/src/timeout.h
index ef2f533..17f44ea 100644
--- a/src/timeout.h
+++ b/src/timeout.h
@@ -18,13 +18,10 @@ typedef t_tm *p_tm;
18 18
19void tm_open(lua_State *L); 19void tm_open(lua_State *L);
20void tm_init(p_tm tm, int block, int total); 20void tm_init(p_tm tm, int block, int total);
21void tm_setblock(p_tm tm, int block); 21int tm_getsuccess(p_tm tm);
22void tm_settotal(p_tm tm, int total); 22int tm_getfailure(p_tm tm);
23int tm_getblock(p_tm tm);
24int tm_gettotal(p_tm tm);
25void tm_markstart(p_tm tm); 23void tm_markstart(p_tm tm);
26int tm_getstart(p_tm tm); 24int tm_getstart(p_tm tm);
27int tm_get(p_tm tm);
28int tm_gettime(void); 25int tm_gettime(void);
29int tm_meth_settimeout(lua_State *L, p_tm tm); 26int tm_meth_settimeout(lua_State *L, p_tm tm);
30 27