mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4073
This commit is contained in:
parent
6cc2defa20
commit
85870e7224
|
@ -16475,3 +16475,10 @@ David 17 Aug 2004
|
|||
net_xfer.C
|
||||
lib/
|
||||
util.C,h
|
||||
Rom 17 Aug 2004
|
||||
- BugFix: Fix trickle messages from host.
|
||||
- BugFix: HR fix for the scheduler.
|
||||
|
||||
sched/
|
||||
handle_request.C
|
||||
sched_send.C
|
||||
|
|
|
@ -768,7 +768,7 @@ void process_request(
|
|||
|
||||
send_code_sign_key(sreq, reply, code_sign_key);
|
||||
|
||||
|
||||
handle_msgs_from_host(sreq, reply);
|
||||
if (config.msg_to_host) {
|
||||
handle_msgs_to_host(sreq, reply);
|
||||
}
|
||||
|
|
|
@ -431,11 +431,11 @@ bool same_platform(DB_HOST& host, SCHEDULER_REQUEST& sreq) {
|
|||
static bool already_sent_to_different_platform(
|
||||
SCHEDULER_REQUEST& sreq, WORKUNIT& workunit, WORK_REQ& wreq
|
||||
) {
|
||||
wreq.homogeneous_redundancy_reject = false;
|
||||
if (workunit.workseq_next != unspec) {
|
||||
if (OS(sreq) + CPU(sreq) != workunit.workseq_next)
|
||||
wreq.homogeneous_redundancy_reject = true;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
workunit.workseq_next = OS(sreq) + CPU(sreq);
|
||||
DB_WORKUNIT db_wu;
|
||||
db_wu = workunit;
|
||||
|
|
Loading…
Reference in New Issue