aboutsummaryrefslogtreecommitdiff
path: root/src/timeout.h
diff options
context:
space:
mode:
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;