]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/arch.c
Clean up superfluous includes
[empserver] / src / lib / lwp / arch.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2011, 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-2008
34  */
35
36 #include <config.h>
37
38 #include <stdlib.h>
39 #include "lwpint.h"
40
41 /*
42  * Historically, this was implemented by abusing setjmp() and
43  * longjump(), which required a fair amount of system-dependent and
44  * fragile hackery.  We now use POSIX ucontext.h.
45  */
46
47 int
48 lwpNewContext(struct lwpProc *newp)
49 {
50     if (getcontext(&newp->context) < 0)
51         return -1;
52 #ifdef MAKECONTEXT_SP_HIGH
53     /*
54      * Known systems that are broken that way: Solaris prior to 10,
55      * IRIX.
56      */
57     newp->context.uc_stack.ss_sp = newp->ustack + newp->usize - 8;
58 #else
59     newp->context.uc_stack.ss_sp = newp->ustack;
60 #endif
61     newp->context.uc_stack.ss_size = newp->usize;
62     newp->context.uc_stack.ss_flags = 0;
63     newp->context.uc_link = NULL;
64     makecontext(&newp->context, lwpEntryPoint, 0);
65     return 0;
66 }
67
68 void
69 lwpSwitchContext(struct lwpProc *oldp, struct lwpProc *nextp)
70 {
71     if (!oldp) {
72         setcontext(&nextp->context);
73         abort();
74     } else {
75         if (swapcontext(&oldp->context, &nextp->context) < 0)
76             abort();
77     }
78 }