Strophe
0.8
XMPP client library
|
Internally used utility functions. More...
Functions | |
uint64_t | time_stamp (void) |
Return an integer based time stamp. | |
uint64_t | time_elapsed (uint64_t t1, uint64_t t2) |
Get the time elapsed between two time stamps. |
Internally used utility functions.
uint64_t time_stamp | ( | void | ) |
Return an integer based time stamp.
This function uses gettimeofday or timeGetTime (on Win32 platforms) to compute an integer based time stamp. This is used internally by the event loop and timed handlers.
uint64_t time_elapsed | ( | uint64_t | t1, |
uint64_t | t2 | ||
) |
Get the time elapsed between two time stamps.
This function returns the time elapsed between t1 and t2 by subtracting t1 from t2. If t2 happened before t1, the result will be negative. This function is used internally by the event loop and timed handlers.
t1 | first time stamp |
t2 | second time stamp |