mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6566
This commit is contained in:
parent
4f403728d6
commit
675a170596
|
@ -175,7 +175,7 @@ static bool update_app_progress(
|
|||
) {
|
||||
char msg_buf[MSG_CHANNEL_SIZE], buf[256];
|
||||
|
||||
if (!app_client_shm) return false;
|
||||
if (standalone) return true;
|
||||
|
||||
sprintf(msg_buf,
|
||||
"<current_cpu_time>%.15e</current_cpu_time>\n"
|
||||
|
|
|
@ -8480,7 +8480,7 @@ David 24 June 2005
|
|||
David 24 June 2005
|
||||
- API library: potential bug:
|
||||
if the core client sends a "quit" message that is handled
|
||||
(but the timer handler) while the worker thread is
|
||||
(by the timer handler) while the worker thread is
|
||||
in the middle of checkpointing,
|
||||
the result could be an incomplete checkpoint,
|
||||
which in general screws up the result.
|
||||
|
@ -8977,3 +8977,12 @@ Charlie 7 July 2005
|
|||
mac-installer/
|
||||
PostInstall.cpp
|
||||
BOINC.pmproj
|
||||
|
||||
David 7 July 2005
|
||||
- Manager: fix for core client startup on Unix
|
||||
(From Bernd Machenschalk)
|
||||
|
||||
api/
|
||||
boinc_api.C
|
||||
clientgui/
|
||||
BOINCGUIApp.cpp
|
||||
|
|
|
@ -406,6 +406,11 @@ void CBOINCGUIApp::StartupBOINCCore() {
|
|||
|
||||
#else // ! __WXMAC__
|
||||
|
||||
#ifndef __WXMSW__
|
||||
// copy the path to the boinmgr from argv[0]
|
||||
strncpy(szExecutableDirectory, wxGetApp().argv[0], sizeof(szExecutableDirectory));
|
||||
#endif
|
||||
|
||||
// We are only interested in the path component of the fully qualified path.
|
||||
wxFileName::SplitPath(szExecutableDirectory, &strDirectory, NULL, NULL);
|
||||
|
||||
|
@ -453,7 +458,7 @@ void CBOINCGUIApp::StartupBOINCCore() {
|
|||
#ifndef __WXMAC__
|
||||
|
||||
// Append boinc.exe to the end of the strExecute string and get ready to rock
|
||||
strExecute += wxT("boinc");
|
||||
strExecute += wxT("boinc -redirectio");
|
||||
|
||||
#endif // ! __WXMAC__
|
||||
|
||||
|
|
|
@ -80,6 +80,7 @@ show_name("Kenichi Miyoshi");
|
|||
show_name("Tony Murray");
|
||||
show_name("Eric Myers");
|
||||
show_name("Kjell Nedrelid");
|
||||
show_name("Rob Ogilvie");
|
||||
show_name("J.R. Oldroyd");
|
||||
show_name("Jakob Pedersen");
|
||||
show_name("Stephen Pellicer");
|
||||
|
|
|
@ -86,6 +86,14 @@ computer resources
|
|||
</td></tr>
|
||||
<tr><td bgcolor=$light_blue><h2>Resources</h2></td></tr>
|
||||
<tr><td>
|
||||
<form method=get action=http://www.google.com/search>
|
||||
<input type=hidden name=domains value=http://boinc.berkeley.edu>
|
||||
<input type=hidden name=sitesearch value=http://boinc.berkeley.edu>
|
||||
<nobr>
|
||||
<input class=small name=q size=30>
|
||||
<input type=image name=search src=images/gn_search_btn.gif>
|
||||
</nobr>
|
||||
</form>
|
||||
<ul>
|
||||
<li> Wikis (user-editable information and documentation):
|
||||
<ul>
|
||||
|
@ -146,6 +154,7 @@ echo "
|
|||
</td></tr>
|
||||
</table>
|
||||
|
||||
|
||||
<hr>
|
||||
";
|
||||
copyright();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
require_once("docutil.php");
|
||||
page_head("Participating in BOINC projects");
|
||||
echo "
|
||||
<b>Running BOINC</b>
|
||||
<h3>Running BOINC</h3>
|
||||
<ul>
|
||||
<li> <a href=intro_user.php>Getting started</a>
|
||||
<li> <a href=projects.php>Choosing projects</a>
|
||||
|
@ -15,7 +15,7 @@ echo "
|
|||
<li> <a href=win_install.php>The Windows installer</a>
|
||||
<li> <a href=client_unix.php>Command-line version (Unix, Mac OS/X)</a>
|
||||
<li> <a href=client_mac.php>Installing BOINC on Mac OS/X</a>
|
||||
<li> <a href=sea.php>Self-extracting archive (UNIX)</a>
|
||||
<li> <a href=sea.php>Self-extracting archive (Unix/Linux)</a>
|
||||
<li> <a href=screensaver.php>The BOINC screensaver</a>
|
||||
</ul>
|
||||
<li> <a href=prefs.php>Preferences</a>
|
||||
|
@ -31,7 +31,7 @@ echo "
|
|||
<li> <a href=acct_mgrs.php>Account managers</a>
|
||||
</ul>
|
||||
<p>
|
||||
<b>Add-on software</b>
|
||||
<h3>Add-on software</h3>
|
||||
<ul>
|
||||
<li> <a href=download_network.php>Add-on software</a>
|
||||
<li> <a href=gui_rpc.php>GUI RPCs</a>
|
||||
|
@ -41,7 +41,7 @@ echo "
|
|||
<li> <a href=proxy_server.php>Proxy servers</a> (why BOINC doesn't have them).
|
||||
</ul>
|
||||
<p>
|
||||
<b>Statistics web sites</b>
|
||||
<h3>Statistics web sites</h3>
|
||||
<ul>
|
||||
<li> <a href=stats_sites.php>BOINC statistics sites</a>
|
||||
<li> <a href=db_dump.php>Downloading statistics data</a>
|
||||
|
|
|
@ -2,7 +2,13 @@
|
|||
require_once("docutil.php");
|
||||
page_head("The BOINC screensaver");
|
||||
echo "
|
||||
The BOINC client software includes a screensaver program.
|
||||
The BOINC client software on Windows and Mac OS X includes a screensaver program,
|
||||
which you can select as your screensaver
|
||||
(on Windows, right-click on the desktop,
|
||||
click Properties, select Screen Saver, select BOINC).
|
||||
<p>
|
||||
NOTE: BOINC runs even if you don't use the screensaver.
|
||||
<p>
|
||||
When active, the screensaver does the following:
|
||||
|
||||
<ul>
|
||||
|
|
Loading…
Reference in New Issue