qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Luiz Capitulino <lcapitulino@redhat.com>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com, quintela@redhat.com
Subject: [Qemu-devel] [PATCH 4/6] Error: Introduce error_copy()
Date: Fri, 10 Feb 2012 17:31:04 -0200	[thread overview]
Message-ID: <1328902266-25308-5-git-send-email-lcapitulino@redhat.com> (raw)
In-Reply-To: <1328902266-25308-1-git-send-email-lcapitulino@redhat.com>

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
 error.c |   12 ++++++++++++
 error.h |    5 +++++
 2 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/error.c b/error.c
index 990050f..d85e136 100644
--- a/error.c
+++ b/error.c
@@ -43,6 +43,18 @@ void error_set(Error **errp, const char *fmt, ...)
     *errp = err;
 }
 
+Error *error_copy(const Error *err)
+{
+    Error *err_new;
+
+    err_new = g_malloc0(sizeof(*err));
+    err_new->obj = qdict_copy(err->obj);
+    err_new->msg = g_strdup(err->msg);
+    err_new->fmt = err->fmt;
+
+    return err_new;
+}
+
 bool error_is_set(Error **errp)
 {
     return (errp && *errp);
diff --git a/error.h b/error.h
index 6361f40..45ff6c1 100644
--- a/error.h
+++ b/error.h
@@ -35,6 +35,11 @@ void error_set(Error **err, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
 bool error_is_set(Error **err);
 
 /**
+ * Returns an exact copy of the error passed as an argument.
+ */
+Error *error_copy(const Error *err);
+
+/**
  * Get a human readable representation of an error object.
  */
 const char *error_get_pretty(Error *err);
-- 
1.7.9.111.gf3fb0.dirty

  parent reply	other threads:[~2012-02-10 19:31 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-10 19:31 [Qemu-devel] [PATCH 0/6] qapi: Convert migrate Luiz Capitulino
2012-02-10 19:31 ` [Qemu-devel] [PATCH 1/6] QError: Introduce new errors for the migration command Luiz Capitulino
2012-02-15 13:10   ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 2/6] monitor: Introduce qemu_get_fd() Luiz Capitulino
2012-02-15 13:11   ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 3/6] QDict: Introduce qdict_copy() Luiz Capitulino
2012-02-15 13:10   ` Juan Quintela
2012-02-15 17:01     ` Luiz Capitulino
2012-02-10 19:31 ` Luiz Capitulino [this message]
2012-02-15  9:04   ` [Qemu-devel] [PATCH 4/6] Error: Introduce error_copy() Paolo Bonzini
2012-02-15 13:05     ` Luiz Capitulino
2012-02-15 13:16       ` Paolo Bonzini
2012-02-15 13:27   ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 5/6] Purge migration of (almost) everything to do with monitors Luiz Capitulino
2012-02-15  9:02   ` Jan Kiszka
2012-02-15 12:53     ` Luiz Capitulino
2012-02-15 13:32       ` Jan Kiszka
2012-02-15 13:15   ` Juan Quintela
2012-02-10 19:31 ` [Qemu-devel] [PATCH 6/6] qapi: Convert migrate Luiz Capitulino
2012-02-15  9:07   ` Wen Congyang
2012-02-15 13:06     ` Luiz Capitulino
2012-02-15 13:25   ` Juan Quintela
2012-02-15 16:01     ` Michael Roth
2012-02-15 17:13       ` Luiz Capitulino
2012-02-15 13:31   ` Jan Kiszka
2012-02-15 13:44     ` Jan Kiszka
2012-02-15  8:59 ` [Qemu-devel] [PATCH 0/6] " Jan Kiszka
2012-02-15 12:49   ` Luiz Capitulino
2012-02-15 13:34     ` Jan Kiszka
2012-02-15 17:23       ` Luiz Capitulino
2012-02-15 17:39         ` Jan Kiszka
2012-02-15 17:49           ` Luiz Capitulino
2012-02-15 17:56             ` Jan Kiszka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1328902266-25308-5-git-send-email-lcapitulino@redhat.com \
    --to=lcapitulino@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).