MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
hrt_stopwatch.h
1 /*
2  Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; version 2 of the License.
7 
8  This program is distributed in the hope that it will be useful,
9  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  GNU General Public License for more details.
12 
13  You should have received a copy of the GNU General Public License
14  along with this program; if not, write to the Free Software
15  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17 
18 /*
19  * hrt_stopwatch.h
20  *
21  */
22 
23 #ifndef _utils_hrt_stopwatch
24 #define _utils_hrt_stopwatch
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 #include "hrt_utils.h"
30 
31 /*
32  * High-Resolution Time Stopwatch Utility
33  */
34 
38 typedef struct hrt_stopwatch {
39  hrt_tstamp* tstamps;
40  unsigned int top;
41  unsigned int cap;
43 
44 /*
45  * Functions for time marks.
46  */
47 
51 extern void hrt_sw_init(hrt_stopwatch* sw, int cap);
52 
56 extern void hrt_sw_close(hrt_stopwatch* sw);
57 
61 extern int hrt_sw_top(const hrt_stopwatch* sw);
62 
66 extern int hrt_sw_capacity(const hrt_stopwatch* sw);
67 
71 extern int hrt_sw_pushmark(hrt_stopwatch* sw);
72 
76 extern void hrt_sw_popmark(hrt_stopwatch* sw);
77 
82 extern double hrt_sw_rtmicros(const hrt_stopwatch* sw, int y, int x);
83 
88 extern double hrt_sw_ctmicros(const hrt_stopwatch* sw, int y, int x);
89 
93 extern void hrt_sw_clear(hrt_stopwatch* sw);
94 
95 #ifdef __cplusplus
96 }
97 #endif
98 #endif