-
Notifications
You must be signed in to change notification settings - Fork 41
/
libucontext_posix.c
59 lines (47 loc) · 1.38 KB
/
libucontext_posix.c
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
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Copyright (c) 2020 Ariadne Conill <ariadne@dereferenced.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* This software is provided 'as is' and without any warranty, express or
* implied. In no event shall the authors be liable for any damages arising
* from the use of this software.
*/
#include <stddef.h>
#include <stdio.h>
#include <signal.h>
#include <libucontext/libucontext.h>
#ifdef FREESTANDING
# error libucontext_posix cannot be built in FREESTANDING mode.
#endif
#ifdef DEBUG
# define TRACE(...) fprintf(stderr, "TRACE: " __VA_ARGS__)
#else
# define TRACE(...)
#endif
int
getcontext(libucontext_ucontext_t *ucp)
{
TRACE("getcontext(%p)\n", ucp);
if (sigprocmask(SIG_SETMASK, NULL, &ucp->uc_sigmask))
return -1;
return libucontext_getcontext(ucp);
}
int
setcontext(const libucontext_ucontext_t *ucp)
{
TRACE("setcontext(%p)\n", ucp);
if (sigprocmask(SIG_SETMASK, &ucp->uc_sigmask, NULL))
return -1;
return libucontext_setcontext(ucp);
}
int
swapcontext(libucontext_ucontext_t *oucp, const libucontext_ucontext_t *ucp)
{
TRACE("swapcontext(%p, %p)\n", oucp, ucp);
if (sigprocmask(SIG_SETMASK, &ucp->uc_sigmask, &oucp->uc_sigmask))
return -1;
return libucontext_swapcontext(oucp, ucp);
}