[PATCH 2/5] RFC: Provide a NORETURN_ATTRIBUTE macro similar to PRINTF_ATTRIBUTE
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Mon, 24 Sep 2012 10:31:54 +0000 (12:31 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:49:34 +0000 (09:49 -0800)
31/2ddb9a6099e3dd55d87c1abc1e44da9ae6ad52 [new file with mode: 0644]

diff --git a/31/2ddb9a6099e3dd55d87c1abc1e44da9ae6ad52 b/31/2ddb9a6099e3dd55d87c1abc1e44da9ae6ad52
new file mode 100644 (file)
index 0000000..57efa68
--- /dev/null
@@ -0,0 +1,106 @@
+Return-Path: <teythoon@jade-hamburg.de>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id A0F0C431FBD\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 03:32:28 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.001\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.001 tagged_above=-999 required=5\r
+       tests=[UNPARSEABLE_RELAY=0.001] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id 5jk+3yYuOVRZ for <notmuch@notmuchmail.org>;\r
+       Mon, 24 Sep 2012 03:32:27 -0700 (PDT)\r
+Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 4DADD431FD6\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 03:32:24 -0700 (PDT)\r
+Received: from mail.jade-hamburg.de (mail.jade-hamburg.de [85.183.11.228])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by mail.cryptobitch.de (Postfix) with ESMTPSA id E06905AA9CD\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 12:32:22 +0200 (CEST)\r
+Received: by mail.jade-hamburg.de (Postfix, from userid 401)\r
+       id 4C33FDF2A6; Mon, 24 Sep 2012 12:32:22 +0200 (CEST)\r
+Received: from thinkbox.jade-hamburg.de (unknown\r
+       [IPv6:fe80::216:d3ff:fe3e:5058%br0])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested) (Authenticated sender: teythoon)\r
+       by mail.jade-hamburg.de (Postfix) with ESMTPSA id 46F03DF2A5;\r
+       Mon, 24 Sep 2012 12:32:12 +0200 (CEST)\r
+Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.80)\r
+       (envelope-from <teythoon@thinkbox.jade-hamburg.de>)\r
+       id 1TG5xR-0002i5-QR; Mon, 24 Sep 2012 12:32:09 +0200\r
+From: Justus Winter <4winter@informatik.uni-hamburg.de>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 2/5] RFC: Provide a NORETURN_ATTRIBUTE macro similar to\r
+       PRINTF_ATTRIBUTE\r
+Date: Mon, 24 Sep 2012 12:31:54 +0200\r
+Message-Id:\r
+ <1348482717-10340-3-git-send-email-4winter@informatik.uni-hamburg.de>\r
+X-Mailer: git-send-email 1.7.10.4\r
+In-Reply-To:\r
+ <1348482717-10340-1-git-send-email-4winter@informatik.uni-hamburg.de>\r
+References: <20120922161256.GE26662@mit.edu>\r
+       <1348482717-10340-1-git-send-email-4winter@informatik.uni-hamburg.de>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Mon, 24 Sep 2012 10:32:28 -0000\r
+\r
+This attribute is understood by gcc since version 2.5. clang provides\r
+support for testing for function attributes using __has_attribute. For\r
+other compilers this macro evaluates to the empty string.\r
+\r
+Note: This is work in progress, please don't merge this patch. The\r
+question that needs to be discussed is where this kind of macro should\r
+be defined.\r
+\r
+Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>\r
+---\r
+ util/error_util.h |   16 ++++++++++++++++\r
+ 1 file changed, 16 insertions(+)\r
+\r
+diff --git a/util/error_util.h b/util/error_util.h\r
+index 1b11047..27e119f 100644\r
+--- a/util/error_util.h\r
++++ b/util/error_util.h\r
+@@ -31,6 +31,22 @@\r
+ #define __has_attribute(x) 0\r
+ #endif\r
\r
++/* Provide a NORETURN_ATTRIBUTE macro similar to PRINTF_ATTRIBUTE from\r
++ * talloc.\r
++ *\r
++ * This attribute is understood by gcc since version 2.5. clang\r
++ * provides support for testing for function attributes.\r
++ */\r
++#ifndef NORETURN_ATTRIBUTE\r
++#if (__GNUC__ >= 3 ||                         \\r
++     (__GNUC__ == 2 && __GNUC_MINOR__ >= 5) ||        \\r
++     __has_attribute (noreturn))\r
++#define NORETURN_ATTRIBUTE __attribute__ ((noreturn))\r
++#else\r
++#define NORETURN_ATTRIBUTE\r
++#endif\r
++#endif\r
++\r
+ /* There's no point in continuing when we've detected that we've done\r
+  * something wrong internally (as opposed to the user passing in a\r
+  * bogus value).\r
+-- \r
+1.7.10.4\r
+\r