OpenCores
URL https://opencores.org/ocsvn/hf-risc/hf-risc/trunk

Subversion Repositories hf-risc

[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [glibc/] [sysdeps/] [unix/] [sysv/] [linux/] [riscv/] [sys/] [ucontext.h] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 serginhofr
/* Copyright (C) 1997, 1998, 2000, 2003, 2004, 2006, 2009 Free Software
2
   Foundation, Inc.  This file is part of the GNU C Library.
3
 
4
   The GNU C Library is free software; you can redistribute it and/or
5
   modify it under the terms of the GNU Lesser General Public
6
   License as published by the Free Software Foundation; either
7
   version 2.1 of the License, or (at your option) any later version.
8
 
9
   The GNU C Library is distributed in the hope that it will be useful,
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
   Lesser General Public License for more details.
13
 
14
   You should have received a copy of the GNU Lesser General Public
15
   License along with the GNU C Library; if not, write to the Free
16
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17
   02111-1307 USA.  */
18
 
19
/* Don't rely on this, the interface is currently messed up and may need to
20
   be broken to be fixed.  */
21
#ifndef _SYS_UCONTEXT_H
22
#define _SYS_UCONTEXT_H 1
23
 
24
#include <features.h>
25
#include <signal.h>
26
 
27
/* We need the signal context definitions even if they are not used
28
   included in <signal.h>.  */
29
#include <bits/sigcontext.h>
30
 
31
/* Type for general register.  Even in o32 we assume 64-bit registers,
32
   like the kernel.  */
33
__extension__ typedef unsigned long long int greg_t;
34
typedef double fpreg_t;
35
 
36
/* Number of general registers.  */
37
#define NGREG   32
38
#define NFPREG  32
39
 
40
#define REG_PC 0
41
#define REG_RA 1
42
#define REG_SP 2
43
#define REG_TP 4
44
#define REG_S0 8
45
#define REG_A0 10
46
#define REG_NARGS 8
47
 
48
/* Container for all general registers.  */
49
typedef greg_t gregset_t[NGREG];
50
 
51
/* Container for all FPU registers.  */
52
typedef fpreg_t fpregset_t[NFPREG];
53
 
54
/* Context to describe whole processor state.  */
55
typedef struct sigcontext mcontext_t;
56
 
57
/* Userlevel context.  */
58
typedef struct ucontext
59
  {
60
    unsigned long int uc_flags;
61
    struct ucontext *uc_link;
62
    stack_t uc_stack;
63
    mcontext_t uc_mcontext;
64
    __sigset_t uc_sigmask;
65
  } ucontext_t;
66
 
67
#endif /* sys/ucontext.h */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.