mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / storage / ndb / include / portlib / NdbTick.h
blobe8bbfed9aa513e4b37a2a2339e3abd26e48ee36d
1 /* Copyright (c) 2003-2007 MySQL AB
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 of the License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
12 You should have received a copy of the GNU General Public License
13 along with this program; if not, write to the Free Software
14 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
16 #ifndef NDB_TICK_H
17 #define NDB_TICK_H
19 #include <ndb_types.h>
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 typedef Uint64 NDB_TICKS;
27 /**
28 * Returns the current millisecond since 1970
30 NDB_TICKS NdbTick_CurrentMillisecond(void);
32 /**
33 * Get current micro second
34 * Second method is simply abstraction on top of the first
36 * Returns 0 - Success
38 int NdbTick_CurrentMicrosecond(NDB_TICKS * secs, Uint32 * micros);
40 struct MicroSecondTimer {
41 NDB_TICKS seconds;
42 NDB_TICKS micro_seconds;
45 /**
46 * Get time between start and stop time in microseconds
47 * Abstraction to get time in struct
49 * 0 means stop happened at or before start time
51 NDB_TICKS NdbTick_getMicrosPassed(struct MicroSecondTimer start,
52 struct MicroSecondTimer stop);
53 int NdbTick_getMicroTimer(struct MicroSecondTimer* time_now);
55 #ifdef __cplusplus
57 #endif
59 #endif