mirror of https://github.com/BOINC/boinc.git
parent
3d01d36a6e
commit
3766eb7e63
|
@ -1576,7 +1576,10 @@ int HOST_INFO::get_host_info(bool init) {
|
||||||
// a run of the client
|
// a run of the client
|
||||||
//
|
//
|
||||||
|
|
||||||
get_virtualbox_version();
|
if (!cc_config.dont_use_vbox) {
|
||||||
|
get_virtualbox_version();
|
||||||
|
}
|
||||||
|
|
||||||
get_cpu_info();
|
get_cpu_info();
|
||||||
get_cpu_count();
|
get_cpu_count();
|
||||||
get_memory_info();
|
get_memory_info();
|
||||||
|
|
|
@ -1214,7 +1214,9 @@ int HOST_INFO::get_host_info(bool init) {
|
||||||
get_os_information(
|
get_os_information(
|
||||||
os_name, sizeof(os_name), os_version, sizeof(os_version)
|
os_name, sizeof(os_name), os_version, sizeof(os_version)
|
||||||
);
|
);
|
||||||
get_virtualbox_version();
|
if (!cc_config.dont_use_vbox) {
|
||||||
|
get_virtualbox_version();
|
||||||
|
}
|
||||||
get_processor_info(
|
get_processor_info(
|
||||||
p_vendor, sizeof(p_vendor),
|
p_vendor, sizeof(p_vendor),
|
||||||
p_model, sizeof(p_model),
|
p_model, sizeof(p_model),
|
||||||
|
|
Loading…
Reference in New Issue