*** empty log message ***

svn path=/trunk/boinc/; revision=6262
This commit is contained in:
David Anderson 2005-05-28 18:17:04 +00:00
parent 5159eefad0
commit ec1553b422
3 changed files with 20 additions and 5 deletions

View File

@ -7101,11 +7101,18 @@ David 26 May 2005
David 26 May 2005 David 26 May 2005
- file_deleter: if a file is present but can't be deleted, - file_deleter: if a file is present but can't be deleted,
don't mark the WU or result as file_delete_state = DONE; don't mark the WU or result as file_delete_state = DONE;
leave it READY. leave it in state READY.
This addresses the case where files can't be deleted because This addresses the case where files can't be deleted because
of dir permissions. of dir permissions.
If such an error occurs, sleep for 5 seconds before next scan
(avoid rapid infinite loop)
(From Kevin Reed) (From Kevin Reed)
- Change log messages in file_deleter to same format as other daemons,
e.g. [WU#12345]
sched/ sched/
file_deleter.C file_deleter.C
@ -7130,3 +7137,9 @@ David 27 May 2005
lib/ lib/
boinc_cmd.C boinc_cmd.C
David 28 May 2005
- commented out RedHat stuff from config.guess
(fix problem where Linux platform name contains "redhat")
config.guess

8
config.guess vendored
View File

@ -137,11 +137,11 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
## for Red Hat Linux ## for Red Hat Linux
if test -f /etc/redhat-release ; then ##if test -f /etc/redhat-release ; then
VENDOR=redhat ; ## VENDOR=redhat ;
else ##else
VENDOR= ; VENDOR= ;
fi ##fi
# Note: order is significant - the case branches are not exclusive. # Note: order is significant - the case branches are not exclusive.

View File

@ -93,6 +93,8 @@ boinc_cmd [--host hostname] [--passwd passwd] command
The commands are as follows: The commands are as follows:
"; ";
list_start(); list_start();
list_item("--help, -h", "help (show commands)");
list_item("--version, -V", "show version");
list_item("--get_state", "show client state"); list_item("--get_state", "show client state");
list_item("--get_results", "show results"); list_item("--get_results", "show results");
list_item("--get_file_transfers", "show file transfers"); list_item("--get_file_transfers", "show file transfers");