mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5612
This commit is contained in:
parent
a4825612b8
commit
7300ca2b0d
|
@ -25711,3 +25711,10 @@ Rom 9 Mar 2005
|
|||
|
||||
clientgui/
|
||||
MainFrame.cpp, .h
|
||||
|
||||
David 9 Mar 2005
|
||||
- db_dump: add UNIX time to directory names for old stats
|
||||
(so that you can run db_dump more than once pre day)
|
||||
|
||||
sched/
|
||||
db_dump.C
|
||||
|
|
|
@ -63,7 +63,7 @@ function sea() {
|
|||
}
|
||||
|
||||
function mac_simple() {
|
||||
return "<a href=mac_simple.php>Simple GUI (test version)</a>";
|
||||
return "<a href=menubar.php>Menubar (simple GUI)</a>";
|
||||
}
|
||||
|
||||
function mac_advanced() {
|
||||
|
|
|
@ -65,6 +65,11 @@ echo "
|
|||
BOINC is supported by the
|
||||
<a href=http://nsf.gov>National Science Foundation</a>
|
||||
through award SCI/0221529.
|
||||
<font size=-2>
|
||||
Any opinions, findings, and conclusions or recommendations expressed in
|
||||
this material are those of the author(s)
|
||||
and do not necessarily reflect the views of the National Science Foundation.
|
||||
</font>
|
||||
</td>
|
||||
<td valign=top bgcolor=c8c8ff>
|
||||
<center>
|
||||
|
|
|
@ -5,17 +5,19 @@ echo "
|
|||
<p>
|
||||
On the client,
|
||||
<code>boinc_send_trickle_up()</code>
|
||||
creates a file 'trickle' in the slot directory
|
||||
creates a file 'trickle_up' in the slot directory
|
||||
and signals the core client via shared memory.
|
||||
When the core client gets this signal,
|
||||
or when the application exits,
|
||||
it moves the file from 'slot/trickle'
|
||||
to 'project/trickle_resultid_time'.
|
||||
to 'project/trickle_up_resultid_time'.
|
||||
<p>
|
||||
When the core client sends an RPC to a server,
|
||||
it scans the project directory for these trickle-up files
|
||||
and includes them in the request.
|
||||
On successful RPC completion it deletes the files.
|
||||
includes them in the request,
|
||||
and appends '.sent' to their filenames.
|
||||
On successful RPC completion it deletes trickle-up files
|
||||
that were sent earlier.
|
||||
|
||||
<p>
|
||||
On the server,
|
||||
|
|
|
@ -837,12 +837,13 @@ int main(int argc, char** argv) {
|
|||
struct tm* tmp;
|
||||
time_t now = time(0);
|
||||
tmp = gmtime(&now);
|
||||
sprintf(buf, "mv %s %s_%d_%d_%d",
|
||||
sprintf(buf, "mv %s %s_%d_%d_%d_%d",
|
||||
spec.final_output_dir,
|
||||
spec.final_output_dir,
|
||||
tmp->tm_mday,
|
||||
tmp->tm_mon+1,
|
||||
1900+tmp->tm_year
|
||||
1900+tmp->tm_year,
|
||||
now
|
||||
);
|
||||
retval = system(buf);
|
||||
if (retval) {
|
||||
|
|
Loading…
Reference in New Issue