Re: [Qemu-devel] [PATCH] target-arm: Avoid g_hash_table_get_keys()

2013-07-08 Thread Peter Crosthwaite
On Mon, Jul 1, 2013 at 9:40 PM, Peter Maydell wrote: > g_hash_table_get_keys() was only introduced in glib 2.14, and we're > still targeting a minimum version of 2.12. Rewrite the offending > code (introduced in commit 721fae1) to use g_hash_table_foreach() > to build the list of keys. > > Signed

Re: [Qemu-devel] [PATCH] target-arm: Avoid g_hash_table_get_keys()

2013-07-01 Thread Laurent Desnogues
On Mon, Jul 1, 2013 at 1:40 PM, Peter Maydell wrote: > g_hash_table_get_keys() was only introduced in glib 2.14, and we're > still targeting a minimum version of 2.12. Rewrite the offending > code (introduced in commit 721fae1) to use g_hash_table_foreach() > to build the list of keys. > > Signed

[Qemu-devel] [PATCH] target-arm: Avoid g_hash_table_get_keys()

2013-07-01 Thread Peter Maydell
g_hash_table_get_keys() was only introduced in glib 2.14, and we're still targeting a minimum version of 2.12. Rewrite the offending code (introduced in commit 721fae1) to use g_hash_table_foreach() to build the list of keys. Signed-off-by: Peter Maydell --- target-arm/helper.c | 12 +