mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=4443
This commit is contained in:
parent
4cb055dbe8
commit
79c3af7119
|
@ -18922,3 +18922,11 @@ David 26 Oct 2004
|
||||||
edit_forum_preferences_form.php
|
edit_forum_preferences_form.php
|
||||||
forum_post.php
|
forum_post.php
|
||||||
forum_rate.php
|
forum_rate.php
|
||||||
|
|
||||||
|
David 26 Oct 2004
|
||||||
|
- added "supports graphics" boolean to RESULT GUI RPC reply
|
||||||
|
|
||||||
|
client/
|
||||||
|
app.C
|
||||||
|
lib/
|
||||||
|
gui_rpc_client.C,h
|
||||||
|
|
|
@ -341,7 +341,7 @@ int ACTIVE_TASK::write(MIOFILE& fout) {
|
||||||
" <fraction_done>%f</fraction_done>\n"
|
" <fraction_done>%f</fraction_done>\n"
|
||||||
" <current_cpu_time>%f</current_cpu_time>\n"
|
" <current_cpu_time>%f</current_cpu_time>\n"
|
||||||
" <vm_size>%f</vm_size>\n"
|
" <vm_size>%f</vm_size>\n"
|
||||||
"%s"
|
"%s%s"
|
||||||
"</active_task>\n",
|
"</active_task>\n",
|
||||||
result->project->master_url,
|
result->project->master_url,
|
||||||
result->name,
|
result->name,
|
||||||
|
@ -353,7 +353,8 @@ int ACTIVE_TASK::write(MIOFILE& fout) {
|
||||||
fraction_done,
|
fraction_done,
|
||||||
current_cpu_time,
|
current_cpu_time,
|
||||||
vm_size,
|
vm_size,
|
||||||
suspended_via_gui?" <suspended_via_gui/>\n":""
|
suspended_via_gui?" <suspended_via_gui/>\n":"",
|
||||||
|
supports_graphics()?" <supports_graphics/>\n":""
|
||||||
);
|
);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -303,6 +303,10 @@ int RESULT::parse(MIOFILE& in) {
|
||||||
active_task = true;
|
active_task = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else if (match_tag(buf, "<supports_graphics/>")) {
|
||||||
|
supports_graphics = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
else if (parse_double(buf, "<final_cpu_time>", final_cpu_time)) continue;
|
else if (parse_double(buf, "<final_cpu_time>", final_cpu_time)) continue;
|
||||||
else if (parse_int(buf, "<state>", state)) continue;
|
else if (parse_int(buf, "<state>", state)) continue;
|
||||||
else if (parse_int(buf, "<scheduler_state>", scheduler_state)) continue;
|
else if (parse_int(buf, "<scheduler_state>", scheduler_state)) continue;
|
||||||
|
@ -361,6 +365,7 @@ void RESULT::clear() {
|
||||||
fraction_done = 0.0;
|
fraction_done = 0.0;
|
||||||
estimated_cpu_time_remaining = 0.0;
|
estimated_cpu_time_remaining = 0.0;
|
||||||
suspended_via_gui = false;
|
suspended_via_gui = false;
|
||||||
|
supports_graphics = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
FILE_TRANSFER::FILE_TRANSFER() {
|
FILE_TRANSFER::FILE_TRANSFER() {
|
||||||
|
|
|
@ -146,6 +146,7 @@ public:
|
||||||
double vm_size;
|
double vm_size;
|
||||||
double estimated_cpu_time_remaining;
|
double estimated_cpu_time_remaining;
|
||||||
bool suspended_via_gui;
|
bool suspended_via_gui;
|
||||||
|
bool supports_graphics;
|
||||||
|
|
||||||
APP* app;
|
APP* app;
|
||||||
WORKUNIT* wup;
|
WORKUNIT* wup;
|
||||||
|
|
Loading…
Reference in New Issue