summaryrefslogtreecommitdiff
path: root/include/remote/win/sys/ucontext.h
blob: c37c3aba8f739ca781e1bd255199d53f06fd861d (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
// This is an incomplete & imprecice implementation of the *nix file
// by the same name


// Since this is only intended for VC++ compilers
// use #pragma once instead of guard macros
#pragma once

#ifdef _MSC_VER // Only for cross compilation to windows
#include <inttypes.h>

#if defined(__linux__) && defined(__x86_64__)
#  define SIZEOF_UCONTEXT 936
#elif defined(__linux__) && defined(__aarch64__)
#  define SIZEOF_UCONTEXT 4560
#elif defined(__linux__) && defined(__arm__)
#  define SIZEOF_UCONTEXT 744
#elif !defined(SIZEOF_UCONTEXT)
  // It is not clear whether the sizeof(ucontext_t) is important
  // While compiling on Windows the members are not referenced...
  // However the size maybe important during a case or a memcpy
  // Barring a full audit it could be important so require the size to be defined
#  error SIZEOF_UCONTEXT is unknown for this target
#endif

typedef struct ucontext
{
    uint8_t content[SIZEOF_UCONTEXT];
} ucontext_t;

#ifdef __aarch64__
// These types are used in the definition of the aarch64 unw_tdep_context_t
// They are not used in UNW_REMOTE_ONLY, so typedef them as something
typedef long sigset_t;
typedef long stack_t;

// Windows SDK defines reserved. It conflicts with arm64 ucontext
// Undefine it
#undef __reserved
#endif

#endif // _MSC_VER