From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NY4IL-0000q2-52 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:25 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NY4IH-0000nT-96 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:24 -0500 Received: from [199.232.76.173] (port=43486 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NY4IH-0000n3-18 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:4420) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NY4IG-0002zu-Gc for qemu-devel@nongnu.org; Thu, 21 Jan 2010 16:10:20 -0500 From: Luiz Capitulino Date: Thu, 21 Jan 2010 19:09:36 -0200 Message-Id: <1264108180-3666-8-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1264108180-3666-1-git-send-email-lcapitulino@redhat.com> References: <1264108180-3666-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 07/11] QError: New QERR_ASYNC_MSG_NOT_FOUND List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, armbru@redhat.com, aliguori@us.ibm.com, avi@redhat.com Signed-off-by: Luiz Capitulino --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+), 0 deletions(-) diff --git a/qerror.c b/qerror.c index 9dd729a..12dcc8f 100644 --- a/qerror.c +++ b/qerror.c @@ -41,6 +41,10 @@ static const QType qerror_type = { */ static const QErrorStringTable qerror_table[] = { { + .error_fmt = QERR_ASYNC_MSG_NOT_FOUND, + .desc = "Asynchronous message %(name) has not been found", + }, + { .error_fmt = QERR_COMMAND_NOT_FOUND, .desc = "The command %(name) has not been found", }, diff --git a/qerror.h b/qerror.h index 9982d57..8e16b35 100644 --- a/qerror.h +++ b/qerror.h @@ -40,6 +40,9 @@ QError *qobject_to_qerror(const QObject *obj); /* * QError class list */ +#define QERR_ASYNC_MSG_NOT_FOUND \ + "{ 'class': 'AsyncMsgNotFound', 'data': { 'name': %s } }" + #define QERR_COMMAND_NOT_FOUND \ "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }" -- 1.6.6