mirror of https://github.com/BOINC/boinc.git
Scheduler: stop complaining about some unrecognized tags
svn path=/trunk/boinc/; revision=12165
This commit is contained in:
parent
7a7deec012
commit
ae3fa03555
|
@ -2080,3 +2080,10 @@ Charlie 27 Feb 2007
|
|||
mac_build/
|
||||
Mac_SA_Insecure.sh
|
||||
Mac_SA_Secure.sh
|
||||
|
||||
Bruce 27 Feb 2007
|
||||
Scheduler: stop complaining about some unrecognized tags.
|
||||
|
||||
sched/
|
||||
server_types.C
|
||||
|
||||
|
|
|
@ -795,6 +795,15 @@ int HOST::parse(FILE* fin) {
|
|||
else if (match_tag(buf, "<p_capabilities>")) continue;
|
||||
else if (match_tag(buf, "<accelerators>")) continue;
|
||||
|
||||
// not sure where thees fields belong in the above
|
||||
// categories
|
||||
//
|
||||
else if (match_tag(buf, "<cpu_caps>")) continue;
|
||||
else if (match_tag(buf, "<cache_l1>")) continue;
|
||||
else if (match_tag(buf, "<cache_l2>")) continue;
|
||||
else if (match_tag(buf, "<cache_l3>")) continue;
|
||||
|
||||
|
||||
else {
|
||||
log_messages.printf(SCHED_MSG_LOG::MSG_NORMAL,
|
||||
"HOST::parse(): unrecognized: %s\n", buf
|
||||
|
|
Loading…
Reference in New Issue