mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 03:47:54 +03:00
common/util: fix get_current_time_msec
returning microseconds
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.c` so that it can be reused elsewhere without having to consider these pitfalls.
This commit is contained in:
parent
d835df38de
commit
d7900c6e5e
3 changed files with 16 additions and 13 deletions
|
@ -6,7 +6,13 @@
|
|||
#include <wayland-server-protocol.h>
|
||||
|
||||
/**
|
||||
* Wrap i into the range [0, max[
|
||||
* Get the current time, in milliseconds.
|
||||
*/
|
||||
|
||||
uint32_t get_current_time_msec(void);
|
||||
|
||||
/**
|
||||
* Wrap i into the range [0, max]
|
||||
*/
|
||||
int wrap(int i, int max);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue