From 2377fbc7b4fe4295a98c9d9f7404d83ca9f87373 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 8 Apr 2004 18:34:48 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3235 --- client/client_state.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/client_state.C b/client/client_state.C index ad12036611..fbf82d1d5b 100644 --- a/client/client_state.C +++ b/client/client_state.C @@ -284,7 +284,7 @@ int CLIENT_STATE::init() { set_client_state_dirty("init"); #ifndef _WIN32 - gui_rpcs.init("gui_rpc"); + //gui_rpcs.init("gui_rpc"); #endif return 0; } @@ -368,7 +368,7 @@ bool CLIENT_STATE::do_something() { POLL_ACTION(garbage_collect , garbage_collect ); POLL_ACTION(update_results , update_results ); #ifndef _WIN32 - POLL_ACTION(gui_rpc , gui_rpcs.poll ); + //POLL_ACTION(gui_rpc , gui_rpcs.poll ); #endif } else if (network_suspended) { scope_messages.printf("CLIENT_STATE::do_something(): network suspended\n"); @@ -381,7 +381,7 @@ bool CLIENT_STATE::do_something() { POLL_ACTION(garbage_collect , garbage_collect ); POLL_ACTION(update_results , update_results ); #ifndef _WIN32 - POLL_ACTION(gui_rpc , gui_rpcs.poll ); + //POLL_ACTION(gui_rpc , gui_rpcs.poll ); #endif } else { net_stats.poll(*net_xfers); @@ -400,7 +400,7 @@ bool CLIENT_STATE::do_something() { POLL_ACTION(garbage_collect , garbage_collect ); POLL_ACTION(update_results , update_results ); #ifndef _WIN32 - POLL_ACTION(gui_rpc , gui_rpcs.poll ); + //POLL_ACTION(gui_rpc , gui_rpcs.poll ); #endif }