Skip to content

Commit 6fc27ff

Browse files
- client: use [wfd] consistently
svn path=/trunk/boinc/; revision=19725
1 parent 781c914 commit 6fc27ff

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

checkin_notes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9546,3 +9546,9 @@ Charlie 26 Nov 2009
95469546
MacAccessibility.cpp
95479547
mac_installer/
95489548
PostInstall.cpp
9549+
9550+
David 27 Nov 2009
9551+
- client: use [wfd] consistently
9552+
9553+
client/
9554+
cs_scheduler.cpp

checkin_notes_2002

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
;; -*- mode: text; tab-width: 4; indent-tabs-mode: nil; -*-
2-
31
David A. April 10 2002
42
Initial checkin of all files.
53
The system is fairly feature-complete and

client/cs_scheduler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ PROJECT* CLIENT_STATE::find_project_with_overdue_results() {
11621162
//
11631163
void CLIENT_STATE::request_work_fetch(const char* where) {
11641164
if (log_flags.work_fetch_debug) {
1165-
msg_printf(0, MSG_INFO, "[work_fetch_debug] Request work fetch: %s", where);
1165+
msg_printf(0, MSG_INFO, "[wfd] Request work fetch: %s", where);
11661166
}
11671167
must_check_work_fetch = true;
11681168
}

client/work_fetch.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,8 +747,9 @@ void WORK_FETCH::compute_shares() {
747747
bool RSC_PROJECT_WORK_FETCH::debt_eligible(PROJECT* p, RSC_WORK_FETCH& rwf) {
748748
if (p->non_cpu_intensive) return false;
749749
if (p->suspended_via_gui) return false;
750-
if (p->dont_request_more_work) return false;
751750
if (has_runnable_jobs) return true;
751+
// must precede the done_request_more_work check
752+
if (p->dont_request_more_work) return false;
752753
if (backoff_time > gstate.now) return false;
753754
if (prefs_prevent_fetch(p, rwf.rsc_type)) return false;
754755

doc/boinc_news.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<?
22

33
$project_news = array(
4+
array("November 27, 2009",
5+
"An <a href=http://www.lanacion.com.ar/nota.asp?nota_id=1204531>article on
6+
volunteer computing</a> appeared today in the Argentine newspaper <i>La Nacion</i>."
7+
),
48
array("October 30, 2009",
59
"The <a href=http://boinc.berkeley.edu/trac/wiki/WorkShop09>Fifth BOINC Workshop</a> was held Oct. 22-23 in Barcelona.
610
There were 35 attendees and 21 excellent talks;

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PACKAGE "boinc"
2424

2525
/* Define to the address where bug reports for this package should be sent. */
26-
#define PACKAGE_BUGREPORT "[email protected]"
26+
#define PACKAGE_BUGREPORT ""
2727

2828
/* Define to the full name of this package. */
2929
#define PACKAGE_NAME "BOINC"

0 commit comments

Comments
 (0)