Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-04-14 Thread Blue Swirl
On Thu, Apr 12, 2012 at 11:13, Peter Maydell peter.mayd...@linaro.org wrote: Ping^3 ? Thanks, applied. When pinging for not very recent patches, including for example the Patchwork ID would help locate the actual patch. Resending the patch would work too, or adding a link to message archives. I

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-04-13 Thread Stefan Hajnoczi
On Thu, Apr 12, 2012 at 12:13:12PM +0100, Peter Maydell wrote: Ping^3 ? Waiting on a qemu.git committer, Andreas Faerber and I have reviewed this. Stefan

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-04-12 Thread Peter Maydell
Ping^3 ? On 3 April 2012 12:54, Peter Maydell peter.mayd...@linaro.org wrote: Ping^2 ? On 14 March 2012 14:50, Peter Maydell peter.mayd...@linaro.org wrote: Ping? On 3 March 2012 14:52, Peter Maydell peter.mayd...@linaro.org wrote: The GLib threading APIs were revamped in GLib 2.31 and a

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-04-03 Thread Peter Maydell
Ping^2 ? On 14 March 2012 14:50, Peter Maydell peter.mayd...@linaro.org wrote: Ping? On 3 March 2012 14:52, Peter Maydell peter.mayd...@linaro.org wrote: The GLib threading APIs were revamped in GLib 2.31 and a number of the old interfaces were deprecated, which means they provoke

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-19 Thread Stefan Hajnoczi
On Thu, Mar 15, 2012 at 09:55:02PM +, Peter Maydell wrote: On 15 March 2012 11:21, Stefan Hajnoczi stefa...@gmail.com wrote: It's ugly but it won't cause larger scale problems, so we should probably pick this up. I was wondering if this is a legitimate case to override warnings -

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-15 Thread Stefan Hajnoczi
On Sat, Mar 3, 2012 at 2:52 PM, Peter Maydell peter.mayd...@linaro.org wrote: The GLib threading APIs were revamped in GLib 2.31 and a number of the old interfaces were deprecated, which means they provoke compilation warnings (errors if -Werror) now. Add support for the new interfaces while

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-15 Thread Andreas Färber
Am 14.03.2012 15:50, schrieb Peter Maydell: Ping? On 3 March 2012 14:52, Peter Maydell peter.mayd...@linaro.org wrote: The GLib threading APIs were revamped in GLib 2.31 and a number of the old interfaces were deprecated, which means they provoke compilation warnings (errors if -Werror)

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-15 Thread Peter Maydell
On 15 March 2012 11:21, Stefan Hajnoczi stefa...@gmail.com wrote: It's ugly but it won't cause larger scale problems, so we should probably pick this up. I was wondering if this is a legitimate case to override warnings - because the new library probably still supports the deprecated

Re: [Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-14 Thread Peter Maydell
Ping? On 3 March 2012 14:52, Peter Maydell peter.mayd...@linaro.org wrote: The GLib threading APIs were revamped in GLib 2.31 and a number of the old interfaces were deprecated, which means they provoke compilation warnings (errors if -Werror) now. Add support for the new interfaces while

[Qemu-devel] [PATCH] coroutine-gthread.c: Avoid threading APIs deprecated in GLib 2.31

2012-03-03 Thread Peter Maydell
The GLib threading APIs were revamped in GLib 2.31 and a number of the old interfaces were deprecated, which means they provoke compilation warnings (errors if -Werror) now. Add support for the new interfaces while retaining the old ones so we can still compile on older versions of GLib too.