Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 38dbfb59d1175ef458d006556061adeaa8751b72 authored by Linus Torvalds on 03 February 2014, 00:42:13 UTC
Linus 3.14-rc1
Tip revision: 38dbfb5
panic.c
/*
 * Copyright (C) 2003  Richard Curnow, SuperH UK Limited
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */

void
panic_handler(unsigned long panicPC, unsigned long panicSSR,
	      unsigned long panicEXPEVT)
{
	/* Never return from the panic handler */
	for (;;) ;
}
back to top