mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-05 09:39:00 +00:00
replay: compatibility with former version
GMutex usage in replay.c was not working so replace with plain pthread. Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
parent
e5063799ab
commit
2a09a5fa36
@ -12,6 +12,7 @@
|
||||
#include <sys/wait.h>
|
||||
#include <fcntl.h>
|
||||
#include <glib.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include <spice/macros.h>
|
||||
#include "red_replay_qxl.h"
|
||||
@ -30,7 +31,7 @@ static GMainLoop *loop = NULL;
|
||||
static GAsyncQueue *aqueue = NULL;
|
||||
static long total_size;
|
||||
|
||||
static GMutex mutex;
|
||||
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||
static guint fill_source_id = 0;
|
||||
|
||||
|
||||
@ -102,9 +103,9 @@ static gboolean fill_queue_idle(gpointer user_data)
|
||||
|
||||
end:
|
||||
if (!keep) {
|
||||
g_mutex_lock(&mutex);
|
||||
pthread_mutex_lock(&mutex);
|
||||
fill_source_id = 0;
|
||||
g_mutex_unlock(&mutex);
|
||||
pthread_mutex_unlock(&mutex);
|
||||
}
|
||||
spice_qxl_wakeup(&display_sin);
|
||||
|
||||
@ -113,7 +114,7 @@ end:
|
||||
|
||||
static void fill_queue(void)
|
||||
{
|
||||
g_mutex_lock(&mutex);
|
||||
pthread_mutex_lock(&mutex);
|
||||
|
||||
if (!started)
|
||||
goto end;
|
||||
@ -124,7 +125,7 @@ static void fill_queue(void)
|
||||
fill_source_id = g_idle_add(fill_queue_idle, NULL);
|
||||
|
||||
end:
|
||||
g_mutex_unlock(&mutex);
|
||||
pthread_mutex_unlock(&mutex);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user