mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9494
This commit is contained in:
parent
5f605a5070
commit
51640f6af7
|
@ -1981,3 +1981,9 @@ Rom 16 Feb 2006
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
ViewTransfers.cpp
|
ViewTransfers.cpp
|
||||||
|
|
||||||
|
David 16 Feb 2006
|
||||||
|
- clientgui compile on unix
|
||||||
|
|
||||||
|
clientgui/
|
||||||
|
Makefile.am
|
||||||
|
|
|
@ -49,7 +49,6 @@ boinc_gui_SOURCES = \
|
||||||
AccountInfoPage.cpp \
|
AccountInfoPage.cpp \
|
||||||
AccountKeyPage.cpp \
|
AccountKeyPage.cpp \
|
||||||
AccountManagerInfoPage.cpp \
|
AccountManagerInfoPage.cpp \
|
||||||
AccountManagerStatusPage.cpp \
|
|
||||||
AccountManagerProcessingPage.cpp \
|
AccountManagerProcessingPage.cpp \
|
||||||
AccountManagerPropertiesPage.cpp \
|
AccountManagerPropertiesPage.cpp \
|
||||||
AlreadyAttachedPage.cpp \
|
AlreadyAttachedPage.cpp \
|
||||||
|
@ -57,8 +56,6 @@ boinc_gui_SOURCES = \
|
||||||
BOINCBaseWizard.cpp \
|
BOINCBaseWizard.cpp \
|
||||||
CompletionErrorPage.cpp \
|
CompletionErrorPage.cpp \
|
||||||
CompletionPage.cpp \
|
CompletionPage.cpp \
|
||||||
CompletionUpdatePage.cpp \
|
|
||||||
CompletionRemovePage.cpp \
|
|
||||||
NoInternetConnectionPage.cpp \
|
NoInternetConnectionPage.cpp \
|
||||||
NotDetectedPage.cpp \
|
NotDetectedPage.cpp \
|
||||||
NotFoundPage.cpp \
|
NotFoundPage.cpp \
|
||||||
|
|
|
@ -149,8 +149,8 @@ echo " <td valign=top width=390><table border=0 cellpadding=8 cellspacing=0>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<br>
|
<br>
|
||||||
One of over 500,000 people around the world participating in
|
One of over 500,000 people worldwide participating in BOINC:
|
||||||
BOINC-based projects.
|
<p>
|
||||||
";
|
";
|
||||||
include("piecharts/$i.html");
|
include("piecharts/$i.html");
|
||||||
echo "
|
echo "
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
require_once("docutil.php");
|
require_once("docutil.php");
|
||||||
page_head("Client scheduling");
|
page_head("Client scheduling policies");
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
This document describes two related parts of the BOINC core client
|
This document describes two related parts of the BOINC core client:
|
||||||
(version 4.36 and later):
|
|
||||||
<dl>
|
<dl>
|
||||||
<dt><b>CPU scheduling policy</b>
|
<dt><b>CPU scheduling policy</b>
|
||||||
<dd>
|
<dd>
|
||||||
|
@ -25,7 +24,7 @@ The goals of the CPU scheduler and work-fetch policies are
|
||||||
(in descending priority):
|
(in descending priority):
|
||||||
<ul>
|
<ul>
|
||||||
<li> Results should be completed and reported by their deadline
|
<li> Results should be completed and reported by their deadline
|
||||||
(results reported after their deadline
|
(because results reported after their deadline
|
||||||
may not have any value to the project and may not be granted credit).
|
may not have any value to the project and may not be granted credit).
|
||||||
<li> NCPUS processors should be kept busy.
|
<li> NCPUS processors should be kept busy.
|
||||||
<li> At any given point, enough work should be kept on hand
|
<li> At any given point, enough work should be kept on hand
|
||||||
|
@ -127,7 +126,7 @@ A project is <b>potentially runnable</b> if
|
||||||
Intuitively, a project's 'debt' is how much work is owed to it,
|
Intuitively, a project's 'debt' is how much work is owed to it,
|
||||||
relative to other projects.
|
relative to other projects.
|
||||||
BOINC uses two types of debt;
|
BOINC uses two types of debt;
|
||||||
each is defined related to a set S of projects.
|
each is defined for a set S of projects.
|
||||||
In each case, the debt is recalculated periodically as follows:
|
In each case, the debt is recalculated periodically as follows:
|
||||||
<ul>
|
<ul>
|
||||||
<li> A = the wall CPU time used by projects in S during this period
|
<li> A = the wall CPU time used by projects in S during this period
|
||||||
|
|
Loading…
Reference in New Issue