| # | Line 1162 | Line 1162 | calstart( /* start fill calculation | |
|---|---|---|
| 1162 | int rval; | |
| 1163 | char **wp, *cp; | |
| 1164 | ||
| 1165 | < | if (PDesc.running) { |
| 1165 | > | if (PDesc.flags & PF_RUNNING) { |
| 1166 | fprintf(stderr, "%s: too many calculations\n", progname); | |
| 1167 | exit(1); | |
| 1168 | } | |
| # | Line 1197 | Line 1197 | calstart( /* start fill calculation | |
| 1197 | static void | |
| 1198 | caldone(void) /* done with calculation */ | |
| 1199 | { | |
| 1200 | < | if (!PDesc.running) |
| 1200 | > | if (!(PDesc.flags & PF_RUNNING)) |
| 1201 | return; | |
| 1202 | clearqueue(); | |
| 1203 | close_process(&PDesc); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |