summaryrefslogtreecommitdiff
path: root/riscv/trunk/rtl/linux/riscv32/sighndh.inc
blob: 8fa6a35ebdc9a18f129a1f64642cca2000d96d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
    This file is part of the Free Pascal run time library.
    Copyright (c) 1999-2000 by Jonas Maebe,
    member of the Free Pascal development team.

    TSigContext and associated structures.

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 **********************************************************************}

{$packrecords C}

type
  PSigContext = ^TSigContext;
  TSigContext = record
    fault_address : cULong;
    regs : array[0..30] of cULong;
    sp : cULong;
    pc : cULong;
    pstate : cULong;
    __pad : cULong;
    { The following field should be 16-byte-aligned. Currently the
      directive for specifying alignment is buggy, so the preceding
      field was added so that the record has the right size. }
    __reserved : array[0..4095] of cUChar;
  end;

  stack_t = record
    ss_sp : pointer;
    ss_flags : cInt;
    ss_size : size_t;
  end;

  PUContext = ^TUContext;
  TUContext = record
    uc_flags : cULong;
    uc_link : PUContext;
    uc_stack : stack_t;
    uc_mcontext : TSigContext;
    uc_sigmask : sigset_t;
  end;