blob: df2fb29c09aa7b63716305fd4cd7ac8598f1a3b5 (
plain)
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
|
/*
* This file has been modified for the cdrkit suite.
*
* The behaviour and appearence of the program code below can differ to a major
* extent from the version distributed by the original author(s).
*
* For details, see Changelog file distributed with the cdrkit package. If you
* received this file from another source then ask the distributing person for
* a log of modifications.
*
*/
#ident "$Id: workers.c,v 1.3 2006/07/04 04:57:42 hpa Exp $"
/* ----------------------------------------------------------------------- *
*
* Copyright 2001-2006 H. Peter Anvin - All Rights Reserved
*
* 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, Inc., 675 Mass Ave, Cambridge MA 02139,
* USA; either version 2 of the License, or (at your option) any later
* version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
/*
* workers.c
*
* Parallel job maintenance
*/
#include "mkzftree.h" /* Must be included first! */
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <sys/wait.h>
/* Global option */
extern int parallel; /* Number of parallel jobs */
/* Functions related to parallel execution */
static volatile int work_threads = 0;
static int is_worker = 0;
/* This waits for one worker to finish */
static void wait_for_one_worker(void)
{
int status;
if ( wait(&status) > 0 ) {
work_threads--;
if ( WIFSIGNALED(status) ) {
kill(getpid(), WTERMSIG(status));
exit(EX_SOFTWARE);
} else if ( WEXITSTATUS(status) ) {
exit(WEXITSTATUS(status));
}
}
}
/* This waits for *all* workers to finish */
void wait_for_all_workers(void)
{
while ( work_threads )
wait_for_one_worker();
}
/* This returns 1 if the "job" at hand should be performed */
int spawn_worker(void)
{
pid_t f;
if ( opt.parallel == 0 )
return 1;
fflush(NULL);
/* Wait for a work slot */
while ( work_threads >= opt.parallel )
wait_for_one_worker();
/* Spawn worker process */
work_threads++; /* Avoids race conditions */
f = fork();
if ( f == -1 ) {
work_threads--;
return 1; /* Do it ourselves */
}
if ( f == 0 ) {
/* Worker process */
is_worker = 1;
return 1;
} else {
/* Control process */
return 0;
}
}
/* Routine to perform at the end of the job */
void end_worker(int err)
{
if ( is_worker ) {
exit(err);
}
}
|