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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/***************************************************************************
* Simple Stopwatch Library
*
* File : stopwatch.h
* Purpose : This file implements a POSIX C library providing basic
* stopwatch functionality. The library attempts to maintain
* microsecond accuracy for timing, but reports values in
* milliseconds. The actual accuracy is platform dependent.
* Author : Michael Dipperstein
* Date : July 7, 2011
*
****************************************************************************
*
* Stopwatch: A POSIX C/C++ Stopwatch Library
* Copyright (C) 2011 by Michael Dipperstein (mdipper@alumni.cs.ucsb.edu)
*
* This file is part of the stopwatch library.
*
* The stopwatch library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* The stopwatch library 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 Lesser
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
***************************************************************************/
/***************************************************************************
* INCLUDED FILES
***************************************************************************/
/***************************************************************************
* FUNCTIONS
***************************************************************************/
/***************************************************************************
* Function : StartTimer
* Description: This function starts or restarts a stopwatch timer.
* Parameters : stopWatch - pointer to the stopwatch_t structure
* containing the timer data.
* Effects : The stopwatch's start time is set to the current time,
* any old accumulated time is cleared, and the timer's
* running flag is set.
* Returned : None
***************************************************************************/
void
/***************************************************************************
* Function : StopTimer
* Description: This function stops a stopwatch timer. The time that the
* timer has been running is saved so that the time count may
* be resumed.
* Parameters : stopWatch - pointer to the stopwatch_t structure
* containing the timer data.
* Effects : The stopwatch's total run time is saved, the previous
* start time and the running flag are cleared.
* Returned : None
***************************************************************************/
void
/***************************************************************************
* Function : ResumeTimer
* Description: This function resumes a stopped stopwatch timer. Time
* from previous runs will be added to the time accumulated
* from this point on.
* Parameters : stopWatch - pointer to the stopwatch_t structure
* containing the timer data.
* Effects : The stopwatch's start time is set to the current time,
* and the timer's running flag is set.
* Returned : None
***************************************************************************/
void
/***************************************************************************
* Function : ReadTimer
* Description: This function returns the total time the stopwatch has
* been running.
* Parameters : stopWatch - pointer to the stopwatch_t structure
* containing the timer data.
* Effects : None
* Returned : The total time the stopwatch has been running in
* milliseconds. If the stopwatch is stopped, the amount of
* time accumulated prior to stopping the stopwatch is
* returned.
***************************************************************************/
unsigned long
/***************************************************************************
* Function : DelayTimer
* Description: This function waits for a time delay in seconds since the
start time, then returns
* Parameters : stopWatch - pointer to the stopwatch_t structure
* containing the timer data.
delay - time since start time in seconds
* Effects : None
* Returned : None
***************************************************************************/
void