-
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.
unicore32 core architecture: signals handling
This patch implements signals. Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
- Loading branch information
GuanXuetao
committed
Mar 17, 2011
1 parent
752bcb4
commit f864d2f
Showing
2 changed files
with
523 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* linux/arch/unicore32/include/asm/sigcontext.h | ||
* | ||
* Code specific to PKUnity SoC and UniCore ISA | ||
* | ||
* Copyright (C) 2001-2010 GUAN Xue-tao | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
#ifndef __UNICORE_SIGCONTEXT_H__ | ||
#define __UNICORE_SIGCONTEXT_H__ | ||
|
||
#include <asm/ptrace.h> | ||
/* | ||
* Signal context structure - contains all info to do with the state | ||
* before the signal handler was invoked. Note: only add new entries | ||
* to the end of the structure. | ||
*/ | ||
struct sigcontext { | ||
unsigned long trap_no; | ||
unsigned long error_code; | ||
unsigned long oldmask; | ||
unsigned long fault_address; | ||
struct pt_regs regs; | ||
}; | ||
|
||
#endif |
Oops, something went wrong.