-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 347250 b: refs/heads/master c: 28570e8 h: refs/heads/master v: v3
- Loading branch information
Max Filippov
authored and
Chris Zankel
committed
Dec 19, 2012
1 parent
752779e
commit 3b2a689
Showing
3 changed files
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c622b29d1f38021411965b7e0170ab055551b257 | ||
refs/heads/master: 28570e8dac5c86ab10ce2a7e9c02d3aaece63760 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* arch/xtensa/include/asm/traps.h | ||
* | ||
* 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. | ||
* | ||
* Copyright (C) 2012 Tensilica Inc. | ||
*/ | ||
#ifndef _XTENSA_TRAPS_H | ||
#define _XTENSA_TRAPS_H | ||
|
||
#include <asm/ptrace.h> | ||
|
||
/* | ||
* handler must be either of the following: | ||
* void (*)(struct pt_regs *regs); | ||
* void (*)(struct pt_regs *regs, unsigned long exccause); | ||
*/ | ||
extern void * __init trap_set_handler(int cause, void *handler); | ||
extern void do_unhandled(struct pt_regs *regs, unsigned long exccause); | ||
|
||
#endif /* _XTENSA_TRAPS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters