All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] spice: Convert core to QEMU thread API
@ 2011-09-20 15:14 Jan Kiszka
  2011-09-22  5:08 ` Dong Xu Wang
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2011-09-20 15:14 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

No need to use pthread directly, we have proper abstractions for
identity checking.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 ui/spice-core.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ui/spice-core.c b/ui/spice-core.c
index 3cbc721..afdf82e 100644
--- a/ui/spice-core.c
+++ b/ui/spice-core.c
@@ -19,10 +19,10 @@
 #include <spice-experimental.h>
 
 #include <netdb.h>
-#include <pthread.h>
 
 #include "qemu-common.h"
 #include "qemu-spice.h"
+#include "qemu-thread.h"
 #include "qemu-timer.h"
 #include "qemu-queue.h"
 #include "qemu-x509.h"
@@ -45,7 +45,7 @@ static char *auth_passwd;
 static time_t auth_expires = TIME_MAX;
 int using_spice = 0;
 
-static pthread_t me;
+static QemuThread me;
 
 struct SpiceTimer {
     QEMUTimer *timer;
@@ -229,7 +229,7 @@ static void channel_event(int event, SpiceChannelEventInfo *info)
      * thread and grab the iothread lock if so before calling qemu
      * functions.
      */
-    bool need_lock = !pthread_equal(me, pthread_self());
+    bool need_lock = !qemu_thread_is_self(&me);
     if (need_lock) {
         qemu_mutex_lock_iothread();
     }
@@ -503,7 +503,7 @@ void qemu_spice_init(void)
     spice_image_compression_t compression;
     spice_wan_compression_t wan_compr;
 
-    me = pthread_self();
+    qemu_thread_get_self(&me);
 
    if (!opts) {
         return;
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH] spice: Convert core to QEMU thread API
  2011-09-20 15:14 [Qemu-devel] [PATCH] spice: Convert core to QEMU thread API Jan Kiszka
@ 2011-09-22  5:08 ` Dong Xu Wang
  0 siblings, 0 replies; 2+ messages in thread
From: Dong Xu Wang @ 2011-09-22  5:08 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: wdongxu, qemu-devel

Tested, it is compatible with checkpatch.pl and can work well.
> No need to use pthread directly, we have proper abstractions for
> identity checking.
>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>
> ---
>   ui/spice-core.c |    8 ++++----
>   1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/ui/spice-core.c b/ui/spice-core.c
> index 3cbc721..afdf82e 100644
> --- a/ui/spice-core.c
> +++ b/ui/spice-core.c
> @@ -19,10 +19,10 @@
>   #include<spice-experimental.h>
>
>   #include<netdb.h>
> -#include<pthread.h>
>
>   #include "qemu-common.h"
>   #include "qemu-spice.h"
> +#include "qemu-thread.h"
>   #include "qemu-timer.h"
>   #include "qemu-queue.h"
>   #include "qemu-x509.h"
> @@ -45,7 +45,7 @@ static char *auth_passwd;
>   static time_t auth_expires = TIME_MAX;
>   int using_spice = 0;
>
> -static pthread_t me;
> +static QemuThread me;
>
>   struct SpiceTimer {
>       QEMUTimer *timer;
> @@ -229,7 +229,7 @@ static void channel_event(int event, SpiceChannelEventInfo *info)
>        * thread and grab the iothread lock if so before calling qemu
>        * functions.
>        */
> -    bool need_lock = !pthread_equal(me, pthread_self());
> +    bool need_lock = !qemu_thread_is_self(&me);
>       if (need_lock) {
>           qemu_mutex_lock_iothread();
>       }
> @@ -503,7 +503,7 @@ void qemu_spice_init(void)
>       spice_image_compression_t compression;
>       spice_wan_compression_t wan_compr;
>
> -    me = pthread_self();
> +    qemu_thread_get_self(&me);
>
>      if (!opts) {
>           return;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-09-22  5:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-20 15:14 [Qemu-devel] [PATCH] spice: Convert core to QEMU thread API Jan Kiszka
2011-09-22  5:08 ` Dong Xu Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.