summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-09-12 15:56:03 +0200
committerFrediano Ziglio <fziglio@redhat.com>2015-10-29 17:59:02 +0000
commit93414b23fa5d87ad94f1bd198dc3be0132d75a15 (patch)
tree9c4e25f6db489f8acbd746475dc5c2d33df99c81
parent1b2c3e40678f01ac4e3c714d243f65642de254be (diff)
downloadspice-93414b23fa5d87ad94f1bd198dc3be0132d75a15.tar.gz
spice-93414b23fa5d87ad94f1bd198dc3be0132d75a15.tar.xz
spice-93414b23fa5d87ad94f1bd198dc3be0132d75a15.zip
utils: add red_get_monotonic_time()
-rw-r--r--server/Makefile.am1
-rw-r--r--server/red_worker.c18
-rw-r--r--server/utils.h32
3 files changed, 37 insertions, 14 deletions
diff --git a/server/Makefile.am b/server/Makefile.am
index dc2fbc5a..87540e4a 100644
--- a/server/Makefile.am
+++ b/server/Makefile.am
@@ -131,6 +131,7 @@ libspice_server_la_SOURCES = \
spice_image_cache.c \
pixmap-cache.h \
pixmap-cache.c \
+ utils.h \
$(NULL)
if HAVE_GL
diff --git a/server/red_worker.c b/server/red_worker.c
index 2b23ffdb..11267e9f 100644
--- a/server/red_worker.c
+++ b/server/red_worker.c
@@ -95,6 +95,7 @@
#include "pixmap-cache.h"
#include "display-channel.h"
#include "cursor-channel.h"
+#include "utils.h"
//#define COMPRESS_STAT
//#define DUMP_BITMAP
@@ -155,11 +156,6 @@ static void rendering_incorrect(const char *msg)
spice_warning("rendering incorrect from now on: %s", msg);
}
-static inline red_time_t timespec_to_red_time(struct timespec *time)
-{
- return (red_time_t) time->tv_sec * (1000 * 1000 * 1000) + time->tv_nsec;
-}
-
typedef unsigned long stat_time_t;
#if defined(RED_WORKER_STAT) || defined(COMPRESS_STAT)
@@ -2375,10 +2371,8 @@ static inline unsigned int red_get_streams_timout(RedWorker *worker)
unsigned int timout = -1;
Ring *ring = &worker->streams;
RingItem *item = ring;
- struct timespec time;
- clock_gettime(CLOCK_MONOTONIC, &time);
- red_time_t now = timespec_to_red_time(&time);
+ red_time_t now = red_get_monotonic_time();
while ((item = ring_next(ring, item))) {
Stream *stream;
@@ -2396,11 +2390,9 @@ static inline unsigned int red_get_streams_timout(RedWorker *worker)
static inline void red_handle_streams_timout(RedWorker *worker)
{
Ring *ring = &worker->streams;
- struct timespec time;
RingItem *item;
- clock_gettime(CLOCK_MONOTONIC, &time);
- red_time_t now = timespec_to_red_time(&time);
+ red_time_t now = red_get_monotonic_time();
item = ring_get_head(ring);
while (item) {
Stream *stream = SPICE_CONTAINEROF(item, Stream, link);
@@ -3543,7 +3535,6 @@ static Drawable *get_drawable(RedWorker *worker, uint8_t effect, RedDrawable *re
uint32_t group_id)
{
Drawable *drawable;
- struct timespec time;
int x;
VALIDATE_SURFACE_RETVAL(worker, red_drawable->surface_id, NULL)
@@ -3563,8 +3554,7 @@ static Drawable *get_drawable(RedWorker *worker, uint8_t effect, RedDrawable *re
worker->drawable_count++;
memset(drawable, 0, sizeof(Drawable));
drawable->refs = 1;
- clock_gettime(CLOCK_MONOTONIC, &time);
- drawable->creation_time = timespec_to_red_time(&time);
+ drawable->creation_time = red_get_monotonic_time();
ring_item_init(&drawable->list_link);
ring_item_init(&drawable->surface_list_link);
ring_item_init(&drawable->tree_item.base.siblings_link);
diff --git a/server/utils.h b/server/utils.h
new file mode 100644
index 00000000..ca8b7f1d
--- /dev/null
+++ b/server/utils.h
@@ -0,0 +1,32 @@
+/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
+/*
+ Copyright (C) 2009-2015 Red Hat, Inc.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, see <http://www.gnu.org/licenses/>.
+*/
+#ifndef UTILS_H_
+# define UTILS_H_
+
+#include <time.h>
+
+/* FIXME: consider g_get_monotonic_time (), but in microseconds */
+static inline red_time_t red_get_monotonic_time(void)
+{
+ struct timespec time;
+
+ clock_gettime(CLOCK_MONOTONIC, &time);
+ return (red_time_t) time.tv_sec * (1000 * 1000 * 1000) + time.tv_nsec;
+}
+
+#endif /* UTILS_H_ */