mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
input: Move get_current_time_msec in from util
get_current_time_msec is only used in cursor.c, so we can move it in and make it static. This is primarily intended to avoid a symbol collision with wlroots, which we unfortunately do not have a good solution for yet.
This commit is contained in:
parent
f81dc1ecc0
commit
80315217f7
3 changed files with 7 additions and 12 deletions
|
@ -10,12 +10,6 @@
|
|||
#include "log.h"
|
||||
#include "util.h"
|
||||
|
||||
uint32_t get_current_time_msec(void) {
|
||||
struct timespec now;
|
||||
clock_gettime(CLOCK_MONOTONIC, &now);
|
||||
return now.tv_sec * 1000 + now.tv_nsec / 1000000;
|
||||
}
|
||||
|
||||
int wrap(int i, int max) {
|
||||
return ((i % max) + max) % max;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue