Release 4.11 arch/sparc/include/asm/bug.h
#ifndef _SPARC_BUG_H
#define _SPARC_BUG_H
#ifdef CONFIG_BUG
#include <linux/compiler.h>
#ifdef CONFIG_DEBUG_BUGVERBOSE
void do_BUG(const char *file, int line);
#define BUG() do { \
do_BUG(__FILE__, __LINE__); \
__builtin_trap(); \
} while (0)
#else
#define BUG() __builtin_trap()
#endif
#define HAVE_ARCH_BUG
#endif
#include <asm-generic/bug.h>
struct pt_regs;
void __noreturn die_if_kernel(char *str, struct pt_regs *regs);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 20 | 29.41% | 1 | 12.50% |
Pete Zaitcev | 15 | 22.06% | 1 | 12.50% |
David Howells | 15 | 22.06% | 1 | 12.50% |
Matt Mackall | 9 | 13.24% | 2 | 25.00% |
David S. Miller | 5 | 7.35% | 1 | 12.50% |
Paul Mackerras | 2 | 2.94% | 1 | 12.50% |
Sam Ravnborg | 2 | 2.94% | 1 | 12.50% |
Total | 68 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.