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/
|
||||
AdvancedFrame.cpp
|
||||
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);
|
||||
cpu_benchmarks_start = dtime();
|
||||
|
||||
if (!benchmark_descs) {
|
||||
benchmark_descs = (BENCHMARK_DESC*)calloc(
|
||||
ncpus, sizeof(BENCHMARK_DESC)
|
||||
);
|
||||
if (benchmark_descs) {
|
||||
free(benchmark_descs);
|
||||
}
|
||||
benchmark_descs = (BENCHMARK_DESC*)calloc(
|
||||
ncpus, sizeof(BENCHMARK_DESC)
|
||||
);
|
||||
benchmarks_running = true;
|
||||
|
||||
for (i=0; i<ncpus; i++) {
|
||||
|
|
|
@ -159,6 +159,7 @@ show_name("Christopher Malton");
|
|||
show_name("Sebastian Masch");
|
||||
show_name("John McLeod VII");
|
||||
show_name("Kenichi Miyoshi");
|
||||
show_name("Don Mullis");
|
||||
show_name("Tony Murray");
|
||||
show_name("Eric Myers");
|
||||
show_name("Harold Naparst");
|
||||
|
|
|
@ -134,6 +134,7 @@ Web site
|
|||
Miscellaneous
|
||||
</b></font>
|
||||
<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=db_dump.php#task>Export credit data as XML</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,
|
||||
but comment out the 'zip' calls, to avoid the linking with 'libboinc_zip.a'
|
||||
<p>
|
||||
To link is necessary to add the 'winmm.dll' (-lwinmm).
|
||||
<h2>Windows: Visual Developer Studio</h2>
|
||||
To link it is necessary to include the 'winmm.dll' library (-lwinmm).
|
||||
|
||||
<h2>Windows: Visual Studio</h2>
|
||||
|
||||
<p><font color=red>2004-06-16 note: this page is outdated; will update
|
||||
(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",
|
||||
"Moderation-related emails (such as user complaints) are sent here.
|
||||
")
|
||||
");
|
||||
list_item("INVITE_CODES", "regular expression used for
|
||||
<a href=account_control.php>controlling account creation</a>.
|
||||
");
|
||||
|
|
Loading…
Reference in New Issue