mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5861
This commit is contained in:
parent
05ece15a25
commit
94f469db26
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue