mirror of https://github.com/BOINC/boinc.git
get host info more often
svn path=/trunk/boinc/; revision=9250
This commit is contained in:
parent
425e74453b
commit
97880fc694
|
@ -508,8 +508,14 @@ Bruce 16 Jan 2006
|
|||
user/
|
||||
host_delete.php
|
||||
|
||||
David 15 Jan 2006
|
||||
David 16 Jan 2006
|
||||
- compile fix for Win
|
||||
|
||||
client/
|
||||
gui_rpc_server.C
|
||||
|
||||
David 16 Jan 2006
|
||||
- Call get_host_info() (not just get_filesystem_info())
|
||||
before each scheduler RPC (from Bruce Allen)
|
||||
client/
|
||||
cs_scheduler.C
|
||||
|
|
|
@ -322,9 +322,9 @@ int CLIENT_STATE::make_scheduler_request(PROJECT* p) {
|
|||
retval = net_stats.write(mf);
|
||||
if (retval) return retval;
|
||||
|
||||
// update disk usage, and write host info
|
||||
// update hardware info, and write host info
|
||||
//
|
||||
get_filesystem_info(host_info.d_total, host_info.d_free);
|
||||
host_info.get_host_info();
|
||||
retval = host_info.write(mf);
|
||||
if (retval) return retval;
|
||||
|
||||
|
|
Loading…
Reference in New Issue