mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-26 22:48:19 +00:00
utils: Remove spice_get_monotonic_time_ms
This is a thin wrapper over g_get_monotonic_time_ms, and is called only once, so we can call directly g_get_monotonic_time_ms instead. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
parent
8b5543dc6a
commit
f84b26f801
@ -3004,7 +3004,7 @@ static void migrate_timeout(void *opaque)
|
||||
|
||||
uint32_t reds_get_mm_time(void)
|
||||
{
|
||||
return spice_get_monotonic_time_ms();
|
||||
return g_get_monotonic_time() / 1000;
|
||||
}
|
||||
|
||||
void reds_enable_mm_time(RedsState *reds)
|
||||
|
||||
@ -66,11 +66,6 @@ static inline red_time_t spice_get_monotonic_time_ns(void)
|
||||
|
||||
#define MSEC_PER_SEC 1000
|
||||
|
||||
static inline red_time_t spice_get_monotonic_time_ms(void)
|
||||
{
|
||||
return g_get_monotonic_time() / 1000;
|
||||
}
|
||||
|
||||
int rgb32_data_has_alpha(int width, int height, size_t stride,
|
||||
const uint8_t *data, int *all_set_out);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user