mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
dc13bb827d
This commit makes `get_current_time_msec` correctly return milliseconds as opposed to microseconds. It also considers the value of `tv_sec`, so we don't lose occasionally go back in time by one second. Finally, the function is moved into `util/time.cc` so that it can be reused elsewhere without having to consider these pitfalls.
9 lines
137 B
C
9 lines
137 B
C
#ifndef UTIL_TIME_H
|
|
#define UTIL_TIME_H
|
|
|
|
/**
|
|
* Get the current time, in milliseconds.
|
|
*/
|
|
uint32_t get_current_time_msec(void);
|
|
|
|
#endif
|