mirror of https://github.com/BOINC/boinc.git
- scheduler, vbox plan class function:
send only 32/64 bit version to 32/64 bit host svn path=/trunk/boinc/; revision=24916
This commit is contained in:
parent
61e6e8949e
commit
df5d595c3a
|
@ -9599,3 +9599,10 @@ Rom 26 Dec 2011
|
|||
samples/vboxwrapper/
|
||||
vbox.cpp
|
||||
vboxwrapper.cpp
|
||||
|
||||
David 26 Dec 2011
|
||||
- scheduler, vbox plan class function:
|
||||
send only 32/64 bit version to 32/64 bit host
|
||||
|
||||
sched/
|
||||
sched_customize.cpp
|
||||
|
|
|
@ -540,8 +540,10 @@ static inline bool app_plan_vbox(
|
|||
// it will look in the 32-bit half of the registry and fail
|
||||
//
|
||||
PLATFORM* p = g_request->platforms.list[0];
|
||||
if (strstr(plan_class, "64") && !is_64b_platform(p->name)) {
|
||||
return false;
|
||||
if (is_64b_platform(p->name)) {
|
||||
if (!strstr(plan_class, "64")) return false;
|
||||
} else {
|
||||
if (strstr(plan_class, "64")) return false;
|
||||
}
|
||||
|
||||
if (strstr(plan_class, "mt")) {
|
||||
|
|
Loading…
Reference in New Issue