*** empty log message ***

svn path=/trunk/boinc/; revision=5861
This commit is contained in:
Rom Walton 2005-04-15 18:45:06 +00:00
parent 05ece15a25
commit 94f469db26
2 changed files with 8 additions and 1 deletions

View File

@ -308,8 +308,14 @@ void CBOINCGUIApp::InitSupportedLanguages() {
bool CBOINCGUIApp::IsBOINCCoreRunning() { bool CBOINCGUIApp::IsBOINCCoreRunning() {
fprintf(stderr, "CBOINCGUIApp::IsBOINCCoreRunning - Function Begin");
bool retval;
RPC_CLIENT rpc; RPC_CLIENT rpc;
return (0 == rpc.init( wxT("localhost") ) ); retval = (0 == rpc.init( wxT("localhost") ) );
fprintf(stderr, "CBOINCGUIApp::IsBOINCCoreRunning - Function End");
return retval;
} }

View File

@ -936,6 +936,7 @@ RPC_CLIENT::~RPC_CLIENT() {
// call this and then call init() again. // call this and then call init() again.
// //
void RPC_CLIENT::close() { void RPC_CLIENT::close() {
fprintf(stderr, "RPC_CLIENT::close Called");
#ifdef _WIN32 #ifdef _WIN32
::closesocket(sock); ::closesocket(sock);
#else #else