*** empty log message ***

svn path=/trunk/boinc/; revision=10986
This commit is contained in:
David Anderson 2006-08-23 16:43:14 +00:00
parent e7711d02ab
commit 78e0c57adb
5 changed files with 16 additions and 28 deletions

View File

@ -9197,3 +9197,14 @@ David 22 Aug 2006
Rom 22 Aug 2006
- Tag for 5.5.15 release, all platforms
boinc_core_release_5_5_15
David 23 Aug 2006
- removed "max_memory_nbytes, "proc_priority", "cpu_affinity",
"run_minimized" and "run_on_startup" from global prefs;
not used anywhere.
client/
cs_cmdline.C
lib/
boinc_cmd.C
prefs.C,h

View File

@ -89,8 +89,6 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
} else if (ARG(file_xfer_giveup_period)) {
if (i == argc-1) show_options = true;
else file_xfer_giveup_period = atoi(argv[++i]);
} else if (ARG(min)) {
global_prefs.run_minimized = true;
} else if (ARG(suspend)) {
user_run_request = USER_RUN_REQUEST_NEVER;
} else if (ARG(saver)) {

View File

@ -454,6 +454,7 @@ int main(int argc, char** argv) {
} else if (!strcmp(cmd, "--test4")) {
GLOBAL_PREFS p;
memset(&p, 0, sizeof(p));
p.defaults();
p.max_cpus = 2;
retval = rpc.set_global_prefs_override_struct(p);
printf("retval %d\n", retval);

View File

@ -45,8 +45,6 @@ void GLOBAL_PREFS::defaults() {
end_hour = 0;
net_start_hour = 0;
net_end_hour = 0;
run_minimized = false;
run_on_startup = false;
leave_apps_in_memory = false;
confirm_before_connecting = true;
hangup_if_dialed = false;
@ -62,13 +60,12 @@ void GLOBAL_PREFS::defaults() {
idle_time_to_run = 3;
max_bytes_sec_up = 1e9;
max_bytes_sec_down = 1e9;
//max_memory_mbytes = 128;
proc_priority = 1;
cpu_affinity = -1;
cpu_usage_limit = 100;
// don't initialize source_project, source_scheduler here
// since they are outside of <venue> elements
// since they are outside of <venue> elements,
// and this is called when find the right venue.
// Also, don't memset to 0
}
// before parsing
@ -77,8 +74,6 @@ void GLOBAL_PREFS::clear_bools() {
run_if_user_active = false;
leave_apps_in_memory = false;
confirm_before_connecting = false;
run_minimized = false;
run_on_startup = false;
hangup_if_dialed = false;
dont_verify_images = false;
}
@ -178,10 +173,6 @@ int GLOBAL_PREFS::parse_override(
continue;
} else if (xp.parse_bool(tag, "hangup_if_dialed", hangup_if_dialed)) {
continue;
} else if (xp.parse_bool(tag, "run_minimized", run_minimized)) {
continue;
} else if (xp.parse_bool(tag, "run_on_startup", run_on_startup)) {
continue;
} else if (xp.parse_bool(tag, "dont_verify_images", dont_verify_images)) {
continue;
} else if (xp.parse_double(tag, "work_buf_min_days", work_buf_min_days)) {
@ -211,12 +202,6 @@ int GLOBAL_PREFS::parse_override(
} else if (xp.parse_double(tag, "max_bytes_sec_down", max_bytes_sec_down)) {
if (max_bytes_sec_down <= 0) max_bytes_sec_down = 1e12;
continue;
#if 0
} else if (xp.parse_int(tag, "max_memory_mbytes", max_memory_mbytes)) {
continue;
#endif
} else if (xp.parse_int(tag, "cpu_affinity", cpu_affinity)) {
continue;
} else if (xp.parse_double(tag, "cpu_usage_limit", dtemp)) {
if (dtemp > 0 && dtemp <= 100) {
cpu_usage_limit = dtemp;
@ -255,7 +240,7 @@ int GLOBAL_PREFS::write(MIOFILE& f) {
" <end_hour>%d</end_hour>\n"
" <net_start_hour>%d</net_start_hour>\n"
" <net_end_hour>%d</net_end_hour>\n"
"%s%s%s%s%s%s"
"%s%s%s%s"
" <work_buf_min_days>%f</work_buf_min_days>\n"
" <max_cpus>%d</max_cpus>\n"
" <cpu_scheduling_period_minutes>%f</cpu_scheduling_period_minutes>\n"
@ -277,8 +262,6 @@ int GLOBAL_PREFS::write(MIOFILE& f) {
net_end_hour,
leave_apps_in_memory?" <leave_apps_in_memory/>\n":"",
confirm_before_connecting?" <confirm_before_connecting/>\n":"",
run_minimized?" <run_minimized/>\n":"",
run_on_startup?" <run_on_startup/>\n":"",
hangup_if_dialed?" <hangup_if_dialed/>\n":"",
dont_verify_images?" <dont_verify_images/>\n":"",
work_buf_min_days,

View File

@ -43,8 +43,6 @@ struct GLOBAL_PREFS {
int net_end_hour;
bool leave_apps_in_memory;
bool confirm_before_connecting;
bool run_minimized;
bool run_on_startup;
bool hangup_if_dialed;
bool dont_verify_images;
double work_buf_min_days;
@ -58,9 +56,6 @@ struct GLOBAL_PREFS {
double idle_time_to_run;
double max_bytes_sec_up;
double max_bytes_sec_down;
//int max_memory_mbytes;
int proc_priority;
int cpu_affinity;
double cpu_usage_limit;
char source_project[256];
char source_scheduler[256];