aboutsummaryrefslogtreecommitdiff
path: root/src/timeout.h
diff options
context:
space:
mode:
authorDiego Nehab <diego@tecgraf.puc-rio.br>2005-03-11 02:21:27 +0000
committerDiego Nehab <diego@tecgraf.puc-rio.br>2005-03-11 02:21:27 +0000
commit6dc9c1096a664fe3642e774aadcb5af9f511176e (patch)
tree66a688e9854d801e594687fac6565da833952bbf /src/timeout.h
parente57f9e9964ac16b1fd09028ea533457f3029d296 (diff)
downloadluasocket-6dc9c1096a664fe3642e774aadcb5af9f511176e.tar.gz
luasocket-6dc9c1096a664fe3642e774aadcb5af9f511176e.tar.bz2
luasocket-6dc9c1096a664fe3642e774aadcb5af9f511176e.zip
Seems to be working on windows.
Diffstat (limited to 'src/timeout.h')
-rw-r--r--src/timeout.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeout.h b/src/timeout.h
index 595aac2..d2f9be0 100644
--- a/src/timeout.h
+++ b/src/timeout.h
@@ -10,8 +10,8 @@
10 10
11/* timeout control structure */ 11/* timeout control structure */
12typedef struct t_tm_ { 12typedef struct t_tm_ {
13 double total; /* total number of miliseconds for operation */
14 double block; /* maximum time for blocking calls */ 13 double block; /* maximum time for blocking calls */
14 double total; /* total number of miliseconds for operation */
15 double start; /* time of start of operation */ 15 double start; /* time of start of operation */
16} t_tm; 16} t_tm;
17typedef t_tm *p_tm; 17typedef t_tm *p_tm;