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 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'

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 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 prepare a

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' libcacard/vsccli

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 wrote: > From: Michael Tokarev > > 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-alo

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

2014-06-09 Thread Paolo Bonzini
From: Michael Tokarev 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. Signed-off-by: Michae