mirror of https://github.com/BOINC/boinc.git
parent
49150b4c0e
commit
f7992332c1
|
@ -191,6 +191,7 @@ void make_work() {
|
|||
sprintf(buf, "added result: %s_%s\n", wu.name, suffix);
|
||||
write_log(buf);
|
||||
nresults_left--;
|
||||
check_stop_trigger();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -204,6 +205,8 @@ int main(int argc, char** argv) {
|
|||
asynch = true;
|
||||
} else if (!strcmp(argv[i], "-cushion")) {
|
||||
cushion = atoi(argv[++i]);
|
||||
} else if (!strcmp(argv[i], "-redundancy")) {
|
||||
redundancy = atoi(argv[++i]);
|
||||
} else if (!strcmp(argv[i], "-result_template")) {
|
||||
strcpy(result_template_file, argv[++i]);
|
||||
} else if (!strcmp(argv[i], "-wu_name")) {
|
||||
|
|
Loading…
Reference in New Issue