mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5215
This commit is contained in:
parent
f1314b0a9a
commit
05c9c5d782
|
@ -23263,4 +23263,12 @@ Rom 25 Jan 2005
|
|||
clientgui/
|
||||
BOINCGUI.pjd
|
||||
BOINCGUIApp.cpp
|
||||
DlgOptions.cpp
|
||||
DlgOptions.cpp
|
||||
|
||||
David 26 Jan 2005
|
||||
- commented out code in scheduler that notifies user
|
||||
if a newer core client exists in this project's DB.
|
||||
Projects don't generally keep track of CC versions any more
|
||||
|
||||
sched/
|
||||
handle_request.C
|
||||
|
|
|
@ -703,6 +703,7 @@ void handle_msgs_to_host(SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply) {
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
void notify_if_newer_core_version(
|
||||
SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply,
|
||||
PLATFORM& platform, SCHED_SHMEM& ss
|
||||
|
@ -724,6 +725,7 @@ void notify_if_newer_core_version(
|
|||
strcpy(reply.message_priority, "low");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void process_request(
|
||||
SCHEDULER_REQUEST& sreq, SCHEDULER_REPLY& reply, SCHED_SHMEM& ss,
|
||||
|
@ -827,7 +829,9 @@ void process_request(
|
|||
goto leave;
|
||||
}
|
||||
|
||||
#if 0
|
||||
notify_if_newer_core_version(sreq, reply, *platform, ss);
|
||||
#endif
|
||||
|
||||
handle_global_prefs(sreq, reply);
|
||||
|
||||
|
|
Loading…
Reference in New Issue