]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/queue.c
Update copyright notice
[empserver] / src / lib / lwp / queue.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2015, 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  *  queue.c: queue manipulation routines
29  *
30  *  Known contributors to this file:
31  *
32  */
33
34 #include <config.h>
35
36 #include <stddef.h>
37 #include "lwpint.h"
38
39 struct lwpProc *
40 lwpGetFirst(struct lwpQueue *q)
41 {
42     struct lwpProc *head;
43
44     if ((head = q->head) && !(q->head = head->next))
45         q->tail = NULL;
46     return head;
47 }
48
49 void
50 lwpAddTail(struct lwpQueue *q, struct lwpProc *p)
51 {
52     if (!q->tail)
53         q->head = p;
54     else
55         q->tail->next = p;
56     q->tail = p;
57     p->next = NULL;
58 }