1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* iSCSI timer
*
* Copyright (C) 2002 Cisco Systems, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* See the file COPYING included with this distribution for more details.
*/
#include <string.h>
#include <sys/time.h>
void iscsi_timer_clear(struct timeval *timer)
{
memset(timer, 0, sizeof (*timer));
}
/* set timer to now + seconds */
void iscsi_timer_set(struct timeval *timer, int seconds)
{
if (timer) {
memset(timer, 0, sizeof (*timer));
gettimeofday(timer, NULL);
timer->tv_sec += seconds;
}
}
int iscsi_timer_expired(struct timeval *timer)
{
struct timeval now;
/* no timer, can't have expired */
if ((timer == NULL) || ((timer->tv_sec == 0) && (timer->tv_usec == 0)))
return 0;
memset(&now, 0, sizeof (now));
gettimeofday(&now, NULL);
if (now.tv_sec > timer->tv_sec)
return 1;
if ((now.tv_sec == timer->tv_sec) && (now.tv_usec >= timer->tv_usec))
return 1;
return 0;
}
int iscsi_timer_msecs_until(struct timeval *timer)
{
struct timeval now;
int msecs;
long partial;
/* no timer, can't have expired, infinite time til it expires */
if ((timer == NULL) || ((timer->tv_sec == 0) && (timer->tv_usec == 0)))
return -1;
memset(&now, 0, sizeof (now));
gettimeofday(&now, NULL);
/* already expired? */
if (now.tv_sec > timer->tv_sec)
return 0;
if ((now.tv_sec == timer->tv_sec) && (now.tv_usec >= timer->tv_usec))
return 0;
/* not expired yet, do the math */
partial = timer->tv_usec - now.tv_usec;
if (partial < 0) {
partial += 1000 * 1000;
msecs = (partial + 500) / 1000;
msecs += (timer->tv_sec - now.tv_sec - 1) * 1000;
} else {
msecs = (partial + 500) / 1000;
msecs += (timer->tv_sec - now.tv_sec) * 1000;
}
return msecs;
}
|