lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 16 Dec 2009 00:09:09 -0800
From:	Joe Perches <joe@...ches.com>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	linux-kernel@...r.kernel.org
Subject: [PATCH 10/14] kernel.h: Remove ATTRIB_NORET, use __attribute__((noreturn))

No real need to indirect this

Signed-off-by: Joe Perches <joe@...ches.com>
---
 include/linux/kernel.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 3b796b9..5c97b73 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -132,9 +132,9 @@ extern void oops_enter(void);
 extern void oops_exit(void);
 extern int oops_may_print(void);
 NORET_TYPE void do_exit(long code)
-	ATTRIB_NORET;
+	__attribute__ ((noreturn));
 NORET_TYPE void complete_and_exit(struct completion *comp, long code)
-	ATTRIB_NORET;
+	__attribute__ ((noreturn));
 
 /*
  * stdlib - String to type conversions
-- 
1.6.6.rc0.57.gad7a

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ