mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1108
This commit is contained in:
parent
a4f68e6c36
commit
381cfa4865
|
@ -29,6 +29,7 @@ using namespace std;
|
|||
#include <sys/wait.h>
|
||||
#include <time.h>
|
||||
#include <assert.h>
|
||||
#include <math.h>
|
||||
|
||||
#include "db.h"
|
||||
#include "backend_lib.h"
|
||||
|
@ -259,7 +260,7 @@ new_host:
|
|||
//
|
||||
static void compute_credit_rating(HOST& host) {
|
||||
host.credit_per_cpu_sec =
|
||||
(host.p_fpops/1e9 + host.p_iops/1e9 + host.p_membw/4e9)/(3*SECONDS_PER_DAY);
|
||||
(fabs(host.p_fpops)/1e9 + fabs(host.p_iops)/1e9 + fabs(host.p_membw)/4e9)/(3*SECONDS_PER_DAY);
|
||||
}
|
||||
|
||||
// Update host record based on request.
|
||||
|
|
19
todo
19
todo
|
@ -18,12 +18,8 @@ Delete files if needed to honor disk usage constraint
|
|||
- "Connect Now" command should apply to a particular project,
|
||||
and should override the backoff on that project
|
||||
|
||||
- Implement Screensaver "blank screen" functionality
|
||||
|
||||
implement server watchdogs
|
||||
|
||||
est_time_to_completion doesn't work for non-running tasks
|
||||
|
||||
-----------------------
|
||||
THINGS TO TEST (preferably with test scripts)
|
||||
-----------------------
|
||||
|
@ -38,11 +34,26 @@ Limit frequency of disk writes
|
|||
- multiple preference sets
|
||||
- shared memory and CPU time measurement, with and without the BOINC API
|
||||
- timezone on all platforms
|
||||
- preference propagation between projects
|
||||
- ensure cpu time doesn't reset if app is killed rather than quitting
|
||||
|
||||
-----------------------
|
||||
MEDIUM-PRIORITY (should do before public release)
|
||||
-----------------------
|
||||
|
||||
let user choose language files in installation process
|
||||
|
||||
write general language file manipulation functions
|
||||
|
||||
use https to secure login pages, do we care about authenticator
|
||||
being transmitted without encryption from the client?
|
||||
|
||||
abort app if excess memory used
|
||||
|
||||
Astropulse memory leak on Linux/Solaris?
|
||||
|
||||
Windows 9x CPU time calculated incorrectly
|
||||
|
||||
write docs for project management
|
||||
how to start/stop server complex
|
||||
what needs to be backed up and how
|
||||
|
|
Loading…
Reference in New Issue