1
0
Fork 0
forked from len0rd/rockbox

Disable interrupt

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@447 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-05-05 17:51:23 +00:00
parent 324cfa4f95
commit 6c2accfda4

View file

@ -32,6 +32,9 @@ void panicf( char *fmt, ...)
{ {
va_list ap; va_list ap;
/* Disable interrupts */
asm volatile ("ldc\t%0,sr" : : "r"(15<<4));
va_start( ap, fmt ); va_start( ap, fmt );
vsnprintf( panic_buf, sizeof(panic_buf), fmt, ap ); vsnprintf( panic_buf, sizeof(panic_buf), fmt, ap );
va_end( ap ); va_end( ap );