mirror of https://github.com/BOINC/boinc.git
Einstein@Home-specific change.
svn path=/trunk/boinc/; revision=10346
This commit is contained in:
parent
7eb4eb68fa
commit
231934fafd
|
@ -927,7 +927,15 @@ void send_work_locality(
|
|||
// here, put a list of patterns of ALL files that are not needed anymore
|
||||
// and should simply be deleted as soon as possible.
|
||||
//
|
||||
bool useful = strncmp("H1_", fname, 3) && strncmp("l1_", fname, 3) && strncmp("w1_", fname, 3);
|
||||
bool useful = strlen(fname) > 10 ||
|
||||
(
|
||||
strncmp("H1_", fname, 3) &&
|
||||
strncmp("h1_", fname, 3) &&
|
||||
strncmp("w1_", fname, 3) &&
|
||||
strncmp("W1_", fname, 3) &&
|
||||
strncmp("l1_", fname, 3) &&
|
||||
strncmp("L1_", fname, 3)
|
||||
);
|
||||
|
||||
// here, put a list of patterns of ALL files that are still needed to be
|
||||
// sticky, but are not 'data' files for locality scheduling purposes, eg they
|
||||
|
|
Loading…
Reference in New Issue