-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproceed.hh
47 lines (37 loc) · 1.1 KB
/
proceed.hh
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
#ifndef PROCEED_HH
#define PROCEED_HH
/*
* The return value of the functions Executor::execute*().
*/
typedef unsigned Proceed;
enum {
P_WAIT = 1 << 0,
/* There's more to do, but it can only be started after having waited
* for other jobs to finish. I.e., the wait function will have to be
* called. */
P_CALL_AGAIN = 1 << 1,
/* The function execute() should be called again for this executor
* (without waiting) at least, for various reasons, mostly for
* randomization of execution order. */
P_FINISHED = 1 << 2,
/* This Executor is finished. */
P_ABORT = 1 << 3,
/* This Executor should be finished immediately. When set, P_FINISHED
* is also set. This does not imply that there was an error -- for
* instance, the trivial flag -t may mean that nothing more should be
* done. */
P_COUNT = 4
};
bool is_valid(Proceed proceed)
{
return
proceed == P_WAIT ||
proceed == P_CALL_AGAIN ||
proceed == (P_WAIT | P_CALL_AGAIN) ||
proceed == P_FINISHED ||
proceed == (P_FINISHED | P_ABORT);
}
#ifndef NDEBUG
string show(Proceed proceed);
#endif
#endif /* ! PROCEED_HH */