[xtensa-cvscommit] linux/include/asm-xtensa processor.h,1.5,1.6
Brought to you by:
zankel
|
From: <ma...@us...> - 2003-03-20 20:42:41
|
Update of /cvsroot/xtensa/linux/include/asm-xtensa In directory sc8-pr-cvs1:/tmp/cvs-serv32508 Modified Files: processor.h Log Message: Add explicit constant for debug-specific fake EXCCAUSE value allocation. Index: processor.h =================================================================== RCS file: /cvsroot/xtensa/linux/include/asm-xtensa/processor.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** processor.h 13 Feb 2003 22:25:20 -0000 1.5 --- processor.h 20 Mar 2003 20:42:37 -0000 1.6 *************** *** 28,31 **** --- 28,44 ---- + /* + * General exception cause assigned to debug exceptions. + * Debug exceptions go to their own vector, rather than + * the general exception vectors (user, kernel, double); + * and their specific causes are reported via DEBUGCAUSE + * rather than EXCCAUSE. However it is sometimes convenient + * to redirect debug exceptions to the general exception + * mechanism. To do this, an otherwise unused EXCCAUSE + * value was assigned to debug exceptions for this purpose: + */ + #define FAKE_EXCCAUSE_DEBUG 31 + + #ifndef __ASSEMBLY__ |