]> mj.ucw.cz Git - libucw.git/blob - ucw/time.h
Fixed note about res_alloc() with no resource pool active
[libucw.git] / ucw / time.h
1 /*
2  *      UCW Library -- A Simple Millisecond Timer
3  *
4  *      (c) 2007--2012 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #ifndef _UCW_TIMER_H
11 #define _UCW_TIMER_H
12
13 /***
14  * === Timestamps
15  *
16  * All timing functions in LibUCW are based on signed 64-bit timestamps
17  * with millisecond precision (the <<basics:type_timestamp_t,`timestamp_t`>> type), which measure
18  * time from an unspecified moment in the past. Depending on the compile-time
19  * settings, that moment can be the traditional UNIX epoch, or for example
20  * system boot if POSIX monotonic clock is used.
21  ***/
22
23 /* time-stamp.c */
24
25 timestamp_t get_timestamp(void);                /** Get current time as a millisecond timestamp. **/
26
27 /* time-conf.c */
28
29 /**
30  * A user type for parsing of time intervals in configuration files.
31  * It is specified as fractional seconds and internally converted to
32  * a <<basics:type_timestamp_t,`timestamp_t`>>. When conversion of
33  * a non-zero value yields zero, an error is raised.
34  **/
35 extern struct cf_user_type timestamp_type;
36
37 /***
38  * === Timers
39  *
40  * A timer is a very simple construct for measuring execution time.
41  * It can be initialized and then read multiple times. Each read returns
42  * the number of milliseconds elapsed since the previous read or initialization.
43  ***/
44
45 /* time-timer.c */
46
47 void init_timer(timestamp_t *timer);            /** Initialize a timer. **/
48 uns get_timer(timestamp_t *timer);              /** Get the number of milliseconds since last init/get of a timer. **/
49 uns switch_timer(timestamp_t *oldt, timestamp_t *newt); /** Stop ticking of one timer and resume another. **/
50
51 #endif