-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqueue.c
121 lines (112 loc) · 3.08 KB
/
queue.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
* Copyright (c) 2016, Kalopa Research. All rights reserved. This is free
* software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation;
* either version 2, or (at your option) any later version.
*
* It is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this product; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
* THIS SOFTWARE IS PROVIDED BY KALOPA RESEARCH "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL KALOPA RESEARCH BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/select.h>
#include <syslog.h>
#include <string.h>
#include "sermux.h"
struct queue freeq;
struct queue idleq;
struct queue busyq;
struct queue *queues[3];
/*
* Initialize the queueing subsystem.
*/
void
queue_init()
{
freeq.head = freeq.tail = NULL;
idleq.head = idleq.tail = NULL;
busyq.head = busyq.tail = NULL;
queues[FREE_Q] = &freeq;
queues[IDLE_Q] = &idleq;
queues[BUSY_Q] = &busyq;
}
/*
* Enqueue a channel on the specified queue.
*/
void
enqueue(struct queue *qp, struct channel *chp)
{
chp->next = NULL;
if (qp->head == NULL)
qp->head = chp;
else
qp->tail->next = chp;
qp->tail = chp;
}
/*
* Remove a channel from the specified queue.
*/
void
dequeue(struct queue *qp, struct channel *chp)
{
if (qp->head == chp) {
/*
* On the head of the queue. Do this the easy way.
*/
if ((qp->head = chp->next) == NULL) {
qp->tail = NULL;
return;
}
} else {
struct channel *nchp;
for (nchp = qp->head; nchp->next != NULL; nchp = nchp->next) {
if (nchp->next == chp) {
nchp->next = chp->next;
break;
}
}
}
/*
* Now make sure the tail pointer is valid.
*/
for (qp->tail = qp->head; qp->tail->next != NULL; qp->tail = qp->tail->next)
;
}
/*
* Move the channel from its current queue to another queue.
*/
void
qmove(struct channel *chp, int newqid)
{
if (chp->qid == newqid)
return;
dequeue(queues[chp->qid], chp);
chp->qid = newqid;
enqueue(queues[newqid], chp);
}
/*
* Return TRUE if more than one channel wants access.
*/
int
contention()
{
return(busyq.head != NULL && busyq.head->next != NULL);
}