Re: [Qemu-devel] [PULL 2/8] vscclient: use glib thread primitives not qemu

2014-06-18 Thread Paolo Bonzini
Il 17/06/2014 21:11, Ed Maste ha scritto: On 17 June 2014 13:15, Paolo Bonzini pbonz...@redhat.com wrote: Il 17/06/2014 19:10, Ed Maste ha scritto: This change breaks the build on FreeBSD: libcacard/vscclient.c: In function 'send_msg': libcacard/vscclient.c:111: warning: implicit declaration

Re: [Qemu-devel] [PULL 2/8] vscclient: use glib thread primitives not qemu

2014-06-17 Thread Ed Maste
On 10 June 2014 01:56, Paolo Bonzini pbonz...@redhat.com wrote: From: Michael Tokarev m...@tls.msk.ru Use glib-provided thread primitives in vscclient instead of qemu ones, and do not use qemu sockets in there (open-code call to WSAStartup() for windows to initialize things). This way,

Re: [Qemu-devel] [PULL 2/8] vscclient: use glib thread primitives not qemu

2014-06-17 Thread Paolo Bonzini
Il 17/06/2014 19:10, Ed Maste ha scritto: This change breaks the build on FreeBSD: libcacard/vscclient.c: In function 'send_msg': libcacard/vscclient.c:111: warning: implicit declaration of function 'htonl' libcacard/vscclient.c:111: warning: nested extern declaration of 'htonl'

Re: [Qemu-devel] [PULL 2/8] vscclient: use glib thread primitives not qemu

2014-06-17 Thread Ed Maste
On 17 June 2014 13:15, Paolo Bonzini pbonz...@redhat.com wrote: Il 17/06/2014 19:10, Ed Maste ha scritto: This change breaks the build on FreeBSD: libcacard/vscclient.c: In function 'send_msg': libcacard/vscclient.c:111: warning: implicit declaration of function 'htonl' ... Can you

[Qemu-devel] [PULL 2/8] vscclient: use glib thread primitives not qemu

2014-06-10 Thread Paolo Bonzini
From: Michael Tokarev m...@tls.msk.ru Use glib-provided thread primitives in vscclient instead of qemu ones, and do not use qemu sockets in there (open-code call to WSAStartup() for windows to initialize things). This way, vscclient becomes more stand-alone, independent on qemu internals.