mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
util/time: de-duplicate timespec_to_msec
This commit is contained in:
parent
dc13bb827d
commit
c9c31f803e
4 changed files with 15 additions and 12 deletions
|
|
@ -1,9 +1,16 @@
|
|||
#ifndef UTIL_TIME_H
|
||||
#define UTIL_TIME_H
|
||||
|
||||
#include <time.h>
|
||||
|
||||
/**
|
||||
* Get the current time, in milliseconds.
|
||||
*/
|
||||
uint32_t get_current_time_msec(void);
|
||||
|
||||
/**
|
||||
* Convert a timespec to milliseconds.
|
||||
*/
|
||||
int64_t timespec_to_msec(const struct timespec *a);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue