Blame view

include/asm-xtensa/sigcontext.h 646 Bytes
9a8fd5589   Chris Zankel   [PATCH] xtensa: A...
1
2
3
4
5
6
7
  /*
   * include/asm-xtensa/sigcontext.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.
   *
29c4dfd92   Chris Zankel   [XTENSA] Remove n...
8
   * Copyright (C) 2001 - 2007 Tensilica Inc.
9a8fd5589   Chris Zankel   [PATCH] xtensa: A...
9
10
11
12
   */
  
  #ifndef _XTENSA_SIGCONTEXT_H
  #define _XTENSA_SIGCONTEXT_H
9a8fd5589   Chris Zankel   [PATCH] xtensa: A...
13
14
15
16
17
18
19
  
  struct sigcontext {
  	unsigned long	oldmask;
  
  	/* CPU registers */
  	unsigned long sc_pc;
  	unsigned long sc_ps;
9a8fd5589   Chris Zankel   [PATCH] xtensa: A...
20
21
22
23
  	unsigned long sc_lbeg;
  	unsigned long sc_lend;
  	unsigned long sc_lcount;
  	unsigned long sc_sar;
29c4dfd92   Chris Zankel   [XTENSA] Remove n...
24
25
26
  	unsigned long sc_acclo;
  	unsigned long sc_acchi;
  	unsigned long sc_a[16];
9a8fd5589   Chris Zankel   [PATCH] xtensa: A...
27
  };
29c4dfd92   Chris Zankel   [XTENSA] Remove n...
28
  #endif /* _XTENSA_SIGCONTEXT_H */