-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrans.c
123 lines (101 loc) · 3.97 KB
/
trans.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
122
123
/*---------------------------------------------------------------------------*/
/*trans.c*/
/*---------------------------------------------------------------------------*/
/*Facilities to keep track of dynamic translators.*/
/*---------------------------------------------------------------------------*/
/*Copyright (C) 2008, 2009 Free Software Foundation, Inc. Written by
Sergiu Ivanov <[email protected]>.
This program 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 of the
License, or * (at your option) any later version.
This program 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 program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA.*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#define _GNU_SOURCE 1
/*---------------------------------------------------------------------------*/
#include <stdlib.h>
#include <hurd/fsys.h>
#include <sys/wait.h>
/*---------------------------------------------------------------------------*/
#include "trans.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------Variables---------------------------------------------------------*/
/*The list of dynamic translators */
trans_el_t * dyntrans = NULL;
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------Functions---------------------------------------------------------*/
/*Adds a translator to the list of translators. One should use only
this function to add a new element to the list. */
error_t
trans_register (fsys_t cntl, pid_t pid, trans_el_t ** new_trans)
{
/*The new entry in the list */
trans_el_t * el;
el = malloc (sizeof (trans_el_t));
if (!el)
return ENOMEM;
el->cntl = cntl;
el->pid = pid;
el->prev = NULL;
el->next = dyntrans;
dyntrans = el;
*new_trans = el;
return 0;
} /*trans_register */
/*---------------------------------------------------------------------------*/
/*Removes a translator from the list. One should use only this
function to remove an element from the list. This function does not
shut down the translator. */
void
trans_unregister (trans_el_t * trans)
{
if (trans->prev)
trans->prev->next = trans->next;
if(trans->next)
trans->next->prev = trans->prev;
free(trans);
} /*trans_unregister */
/*---------------------------------------------------------------------------*/
/*Gracefully shuts down all the translators registered in the list
with `flags`. If wait is nonzero, waits for each translator to
finish. */
error_t
trans_shutdown_all (int flags, int wait)
{
error_t err;
/*The element being dealt with now. */
trans_el_t * el;
/*The exit status of the dynamic translator, in case we are waiting
for it to finish. */
int exit_status;
for (el = dyntrans; el; el = el->next)
{
err = fsys_goaway (el->cntl, flags);
if (err)
{
/*The error cannot happen because the translators are being
shut down in the incorrect order, so something is
wrong. Stop and update dyntrans. */
dyntrans = el;
return err;
}
if (wait)
{
/*Wait for the translator process to stop, if needed. */
waitpid (el->pid, &exit_status, 0);
}
}
dyntrans = NULL;
return 0;
} /*trans_shutdown_all */
/*---------------------------------------------------------------------------*/