mirror of https://github.com/BOINC/boinc.git
parent
bdf2aec74b
commit
9ce56f864d
|
@ -1076,8 +1076,7 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
|
||||||
exit_after = atoi(argv[++i]);
|
exit_after = atoi(argv[++i]);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// Give up on file transfers after x seconds.
|
|
||||||
// Default value is 1209600 (2 weeks)
|
|
||||||
if (!strcmp(argv[i], "-giveup_after")) {
|
if (!strcmp(argv[i], "-giveup_after")) {
|
||||||
giveup_after = atoi(argv[++i]);
|
giveup_after = atoi(argv[++i]);
|
||||||
continue;
|
continue;
|
||||||
|
@ -1088,7 +1087,6 @@ void CLIENT_STATE::parse_cmdline(int argc, char** argv) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Put the client in the background after starting up
|
|
||||||
if (!strcmp(argv[i], "-min")) {
|
if (!strcmp(argv[i], "-min")) {
|
||||||
minimize = true;
|
minimize = true;
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -1,6 +1,24 @@
|
||||||
<title>Core client: debugging</title>
|
<title>Core client: debugging</title>
|
||||||
<body bgcolor=ffffff>
|
<body bgcolor=ffffff>
|
||||||
<h2>Core client: debugging</h2>
|
<h2>Core client: debugging</h2>
|
||||||
|
<h3>Command-line options</h3>
|
||||||
|
<p>
|
||||||
|
Some command-line options intended for debugging:
|
||||||
|
<dl>
|
||||||
|
<dt> -exit_when_idle
|
||||||
|
<dd> Exit when we're not working on anything and a scheduling server
|
||||||
|
gives a "no work" return.
|
||||||
|
<dt> -no_time_test
|
||||||
|
<dd> Don't run performance benchmarks; used fixed numbers instead.
|
||||||
|
<dt> -exit_after N
|
||||||
|
<dd> Exit after about N seconds
|
||||||
|
<dt> -giveup_after N
|
||||||
|
<dd> Give up on file transfers after N seconds (default is 2 weeks)
|
||||||
|
<dt> -limit_transfer_rate N
|
||||||
|
<dd> Limit total network traffic to N bytes/sec.
|
||||||
|
<dt> -min
|
||||||
|
<dd> Put client in the background after starting up
|
||||||
|
|
||||||
<h3>Logging and error output</h3>
|
<h3>Logging and error output</h3>
|
||||||
<p>
|
<p>
|
||||||
The core client writes error messages to stderr.
|
The core client writes error messages to stderr.
|
||||||
|
|
1
todo
1
todo
|
@ -3,7 +3,6 @@ BUGS (arranged from high to low priority)
|
||||||
-----------------------
|
-----------------------
|
||||||
- Suspend/resume not fully functional on Windows,
|
- Suspend/resume not fully functional on Windows,
|
||||||
no way to suspend/resume on UNIX
|
no way to suspend/resume on UNIX
|
||||||
- Currently, if there are multiple CPUs they work on the same result
|
|
||||||
- "Show Graphics" menu item brings up minimized window,
|
- "Show Graphics" menu item brings up minimized window,
|
||||||
client does not remember window size/pos after close/reopen,
|
client does not remember window size/pos after close/reopen,
|
||||||
window closes and does not reopen when workunit finishes
|
window closes and does not reopen when workunit finishes
|
||||||
|
|
Loading…
Reference in New Issue