mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10585
This commit is contained in:
parent
8e948e1782
commit
e50ab97929
|
@ -7264,3 +7264,11 @@ Rom 5 July 2006
|
||||||
clientgui/
|
clientgui/
|
||||||
AdvancedFrame.cpp
|
AdvancedFrame.cpp
|
||||||
BOINCTaskBar.cpp, .h
|
BOINCTaskBar.cpp, .h
|
||||||
|
|
||||||
|
David 5 July 2006
|
||||||
|
- core client: fix bug where we write past the end of
|
||||||
|
benchmark_desc array if ncpus increases
|
||||||
|
(from Don Mullis)
|
||||||
|
|
||||||
|
client/
|
||||||
|
cs_benchmark.C
|
||||||
|
|
|
@ -192,11 +192,12 @@ void CLIENT_STATE::start_cpu_benchmarks() {
|
||||||
remove_benchmark_file(BM_TYPE_INT);
|
remove_benchmark_file(BM_TYPE_INT);
|
||||||
cpu_benchmarks_start = dtime();
|
cpu_benchmarks_start = dtime();
|
||||||
|
|
||||||
if (!benchmark_descs) {
|
if (benchmark_descs) {
|
||||||
benchmark_descs = (BENCHMARK_DESC*)calloc(
|
free(benchmark_descs);
|
||||||
ncpus, sizeof(BENCHMARK_DESC)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
benchmark_descs = (BENCHMARK_DESC*)calloc(
|
||||||
|
ncpus, sizeof(BENCHMARK_DESC)
|
||||||
|
);
|
||||||
benchmarks_running = true;
|
benchmarks_running = true;
|
||||||
|
|
||||||
for (i=0; i<ncpus; i++) {
|
for (i=0; i<ncpus; i++) {
|
||||||
|
|
|
@ -159,6 +159,7 @@ show_name("Christopher Malton");
|
||||||
show_name("Sebastian Masch");
|
show_name("Sebastian Masch");
|
||||||
show_name("John McLeod VII");
|
show_name("John McLeod VII");
|
||||||
show_name("Kenichi Miyoshi");
|
show_name("Kenichi Miyoshi");
|
||||||
|
show_name("Don Mullis");
|
||||||
show_name("Tony Murray");
|
show_name("Tony Murray");
|
||||||
show_name("Eric Myers");
|
show_name("Eric Myers");
|
||||||
show_name("Harold Naparst");
|
show_name("Harold Naparst");
|
||||||
|
|
|
@ -134,6 +134,7 @@ Web site
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
</b></font>
|
</b></font>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li> <a href=mass_email.php>Sending mass emails</a>
|
||||||
<li> <a href=gui_urls.php>Project-specific items in the client GUI</a>
|
<li> <a href=gui_urls.php>Project-specific items in the client GUI</a>
|
||||||
<li> <a href=db_dump.php#task>Export credit data as XML</a>
|
<li> <a href=db_dump.php#task>Export credit data as XML</a>
|
||||||
<li> <a href=grid.php>Integrating BOINC projects with Grids</a>
|
<li> <a href=grid.php>Integrating BOINC projects with Grids</a>
|
||||||
|
|
|
@ -7,8 +7,9 @@ page_head("FORTRAN applications");?>
|
||||||
Include the file 'boinc_api_fortran.C' in the api/Makefile.am,
|
Include the file 'boinc_api_fortran.C' in the api/Makefile.am,
|
||||||
but comment out the 'zip' calls, to avoid the linking with 'libboinc_zip.a'
|
but comment out the 'zip' calls, to avoid the linking with 'libboinc_zip.a'
|
||||||
<p>
|
<p>
|
||||||
To link is necessary to add the 'winmm.dll' (-lwinmm).
|
To link it is necessary to include the 'winmm.dll' library (-lwinmm).
|
||||||
<h2>Windows: Visual Developer Studio</h2>
|
|
||||||
|
<h2>Windows: Visual Studio</h2>
|
||||||
|
|
||||||
<p><font color=red>2004-06-16 note: this page is outdated; will update
|
<p><font color=red>2004-06-16 note: this page is outdated; will update
|
||||||
(functions are now declared <code>extern"C"</code> so
|
(functions are now declared <code>extern"C"</code> so
|
||||||
|
|
|
@ -52,7 +52,7 @@ list_item("SYS_ADMIN_EMAIL", "Users are directed here if they
|
||||||
");
|
");
|
||||||
list_item("FORUM_MODERATION_EMAIL_USER_ID",
|
list_item("FORUM_MODERATION_EMAIL_USER_ID",
|
||||||
"Moderation-related emails (such as user complaints) are sent here.
|
"Moderation-related emails (such as user complaints) are sent here.
|
||||||
")
|
");
|
||||||
list_item("INVITE_CODES", "regular expression used for
|
list_item("INVITE_CODES", "regular expression used for
|
||||||
<a href=account_control.php>controlling account creation</a>.
|
<a href=account_control.php>controlling account creation</a>.
|
||||||
");
|
");
|
||||||
|
|
Loading…
Reference in New Issue