]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/arch.c
lwp: Include signal.h instead of ucontext.h where possible
[empserver] / src / lib / lwp / arch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2021, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *  Copyright (C) 1991-3 Stephen Crane
6  *
7  *  Empire is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  arch.c: architecture-dependant process context code
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  *     Steve McClure, 1994-2000
33  *     Markus Armbruster, 2004-2021
34  */
35
36 #include <config.h>
37
38 #include <stdlib.h>
39 #include <ucontext.h>
40 #include "lwpint.h"
41
42 /*
43  * Historically, this was implemented by abusing setjmp() and
44  * longjump(), which required a fair amount of system-dependent and
45  * fragile hackery.  We now use POSIX ucontext.h.
46  */
47
48 int
49 lwpNewContext(struct lwpProc *newp)
50 {
51     if (getcontext(&newp->context) < 0)
52         return -1;
53 #ifdef MAKECONTEXT_SP_HIGH
54     /*
55      * Known systems that are broken that way: Solaris prior to 10,
56      * IRIX.
57      */
58     newp->context.uc_stack.ss_sp = newp->ustack + newp->usize - 8;
59 #else
60     newp->context.uc_stack.ss_sp = newp->ustack;
61 #endif
62     newp->context.uc_stack.ss_size = newp->usize;
63     newp->context.uc_stack.ss_flags = 0;
64     newp->context.uc_link = NULL;
65     makecontext(&newp->context, lwpEntryPoint, 0);
66     return 0;
67 }
68
69 void
70 lwpSwitchContext(struct lwpProc *oldp, struct lwpProc *nextp)
71 {
72     if (!oldp) {
73         setcontext(&nextp->context);
74         abort();
75     } else {
76         if (swapcontext(&oldp->context, &nextp->context) < 0)
77             abort();
78     }
79 }