From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mw0ed-0000z5-84 for qemu-devel@nongnu.org; Thu, 08 Oct 2009 17:36:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mw0eX-0000tC-JF for qemu-devel@nongnu.org; Thu, 08 Oct 2009 17:36:06 -0400 Received: from [199.232.76.173] (port=34335 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mw0eX-0000t2-Fd for qemu-devel@nongnu.org; Thu, 08 Oct 2009 17:36:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52301) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mw0eX-0002xL-0i for qemu-devel@nongnu.org; Thu, 08 Oct 2009 17:36:01 -0400 From: Luiz Capitulino Date: Thu, 8 Oct 2009 18:35:37 -0300 Message-Id: <1255037747-3340-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH v0 00/10]: More QObject conversions List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com Hi there, Here goes another set of conversions, just to keep the ball rolling. The first patch introduces a function called qobject_from_fmt(), which can be used to build QObjects from a specified printf-like format. Most of its code was based on a Python function with similiar functionality, as far as I could understand the license is compatible and I've added a copyright notice. Is this the right procedure? Most patches are simple (as we aren't converting errors yet), except the last ones. Which use qobject_from_fmt() and are very cool, hopefully they're right too. :) PS: This series apply on top of my last 'Initial QObject conversion' series. Thanks.