mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4124
This commit is contained in:
parent
271066dfa0
commit
cefa6c1dad
|
@ -16752,3 +16752,11 @@ David 27 Aug 2004
|
|||
html/inc/
|
||||
db_ops.inc
|
||||
|
||||
Rom 29 Aug 2004
|
||||
- Increase the feeder buffer sizes so that whatever this fcgi problem is,
|
||||
we don't have to bounce the project so often. This is a temporary hack
|
||||
until I or somebody else figures out whats going on.
|
||||
|
||||
sched/
|
||||
feeder.C
|
||||
sched_shmem.h
|
||||
|
|
|
@ -294,7 +294,8 @@ void feeder_loop() {
|
|||
no_wus = false;
|
||||
|
||||
scan_work_array(
|
||||
wi, 1000, nadditions, ncollisions, ninfeasible, no_wus
|
||||
//wi, 1000, nadditions, ncollisions, ninfeasible, no_wus
|
||||
wi, 10000, nadditions, ncollisions, ninfeasible, no_wus
|
||||
);
|
||||
|
||||
ssp->ready = true;
|
||||
|
|
|
@ -31,7 +31,8 @@
|
|||
#define MAX_PLATFORMS 50
|
||||
#define MAX_APPS 10
|
||||
#define MAX_APP_VERSIONS 100
|
||||
#define MAX_WU_RESULTS 100
|
||||
//#define MAX_WU_RESULTS 100
|
||||
#define MAX_WU_RESULTS 5000
|
||||
|
||||
#define WR_STATE_EMPTY 0
|
||||
#define WR_STATE_PRESENT 1
|
||||
|
|
Loading…
Reference in New Issue