*** empty log message ***

svn path=/trunk/boinc/; revision=6383
This commit is contained in:
David Anderson 2005-06-19 19:12:29 +00:00
parent d38d8059d3
commit 3db935e44a
5 changed files with 102 additions and 2 deletions

View File

@ -8058,3 +8058,10 @@ David 18 June 2005
client/
client_types.C
cs_scheduler.C
David 19 June 2005
- bug fix in scheduler
(from Glenn Dill)
client/
cs_scheduler.C

View File

@ -1040,8 +1040,9 @@ void CLIENT_STATE::set_scheduler_modes() {
double first = booked_to[0];
int ifirst = 0;
for (k=1; k<ncpus; k++) {
if (first < booked_to[ifirst]) {
first = booked_to[ifirst];
if (booked_to[k] < first) {
first = booked_to[k];
ifirst = k;
}
}
booked_to[ifirst] += rp->estimated_cpu_time_remaining()/project_proc_rate;

View File

@ -52,5 +52,9 @@ list_item_array(array(
));
list_end();
echo "
If you have a download server not listed here,
please send email to davea at ssl.berkeley.edu.
";
page_tail();
?>

32
doc/linux.php Normal file
View File

@ -0,0 +1,32 @@
<?php
require_once("docutil.php");
page_head("Running BOINC on Linux");
echo "
The BOINC client software should work on:
<ul>
<li> Any Linux version 2.0 or greater with libc version 2.2 or greater.
<li> Any Intel x86-compatible processor.
</ul>
<hr>
If BOINC produces as error message of the form
<pre>
boinc_client: /lib/libc.so.6: version `GLIBC_2.2' not found (required by ./boinc_client)
</pre>
then you need to install a newer version of libc.
<hr>
If BOINC produces as error message of the form
<pre>
boinc_client: /lib/libc.so.6: version `GLIBC_2.3' not found (required by ./boinc_client)
</pre>
then the BOINC client was built incorrectly;
please alert us.
";
page_tail();
?>

56
doc/solaris.php Normal file
View File

@ -0,0 +1,56 @@
<?php
require_once("docutil.php");
page_head("Running BOINC on Solaris");
echo "
The BOINC client software should work on:
<ul>
<li> Solaris versions 7, 8, 9, or 10
<li> Any SPARC processor
</ul>
<hr>
If BOINC produces messages of the form
<pre>
ld.so.1: boinc: fatal: libgcc_s.so.1: open failed: No such file or directory
</pre>
then you may need to add /usr/local/lib to your LD_LIBRARY_PATH
before running BOINC.
<hr>
If BOINC produces messages of the form
<pre>
ld.so.1: boinc: fatal: libstdc++.so.3: open failed: No such file or
directory
</pre>
then you probably have a newer version of libstdc++.so,
and you may need to symbolically link the newer version to libstdc++.so.3
<hr>
If BOINC produces messages of the form
<pre>
Can't create shared mem: -144
</pre>
then you need to change your shared-memory configuration.
For example, make the following change to /etc/system and reboot:
<pre>
set strctlsz=4096
set shmsys:shminfo_shmmax=130000000
set shmsys:shminfo_shmseg=600
set shmsys:shminfo_shmmni=512
set shmsys:shminfo_shmmin=1
set semsys:seminfo_semmns=4096
set semsys:seminfo_semmni=4096
set semsys:seminfo_semmnu=4096
set semsys:seminfo_semume=64
set semsys:seminfo_semmap=512
set semsys:seminfo_semmsl=128
</pre>
";
page_tail();
?>