Skip to content
forked from BOINC/boinc

Commit

Permalink
- client: use [wfd] consistently
Browse files Browse the repository at this point in the history
svn path=/trunk/boinc/; revision=19725
  • Loading branch information
davidpanderson committed Nov 27, 2009
1 parent 781c914 commit 6fc27ff
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
6 changes: 6 additions & 0 deletions checkin_notes
Original file line number Diff line number Diff line change
Expand Up @@ -9546,3 +9546,9 @@ Charlie 26 Nov 2009
MacAccessibility.cpp
mac_installer/
PostInstall.cpp

David 27 Nov 2009
- client: use [wfd] consistently

client/
cs_scheduler.cpp
2 changes: 0 additions & 2 deletions checkin_notes_2002
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
;; -*- mode: text; tab-width: 4; indent-tabs-mode: nil; -*-

David A. April 10 2002
Initial checkin of all files.
The system is fairly feature-complete and
Expand Down
2 changes: 1 addition & 1 deletion client/cs_scheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@ PROJECT* CLIENT_STATE::find_project_with_overdue_results() {
//
void CLIENT_STATE::request_work_fetch(const char* where) {
if (log_flags.work_fetch_debug) {
msg_printf(0, MSG_INFO, "[work_fetch_debug] Request work fetch: %s", where);
msg_printf(0, MSG_INFO, "[wfd] Request work fetch: %s", where);
}
must_check_work_fetch = true;
}
Expand Down
3 changes: 2 additions & 1 deletion client/work_fetch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,9 @@ void WORK_FETCH::compute_shares() {
bool RSC_PROJECT_WORK_FETCH::debt_eligible(PROJECT* p, RSC_WORK_FETCH& rwf) {
if (p->non_cpu_intensive) return false;
if (p->suspended_via_gui) return false;
if (p->dont_request_more_work) return false;
if (has_runnable_jobs) return true;
// must precede the done_request_more_work check
if (p->dont_request_more_work) return false;
if (backoff_time > gstate.now) return false;
if (prefs_prevent_fetch(p, rwf.rsc_type)) return false;

Expand Down
4 changes: 4 additions & 0 deletions doc/boinc_news.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?

$project_news = array(
array("November 27, 2009",
"An <a href=http://www.lanacion.com.ar/nota.asp?nota_id=1204531>article on
volunteer computing</a> appeared today in the Argentine newspaper <i>La Nacion</i>."
),
array("October 30, 2009",
"The <a href=http://boinc.berkeley.edu/trac/wiki/WorkShop09>Fifth BOINC Workshop</a> was held Oct. 22-23 in Barcelona.
There were 35 attendees and 21 excellent talks;
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#define PACKAGE "boinc"

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

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

0 comments on commit 6fc27ff

Please sign in to comment.