diff --git a/checkin_notes b/checkin_notes index b06381c088..91bfa631a6 100644 --- a/checkin_notes +++ b/checkin_notes @@ -110,3 +110,22 @@ David 5 Jan 2010 client_types.h rr_sim.cpp work_fetch.cpp + +Charlie 6 Jan 2010 + - client: Eliminate x86_64 Mac client; i386 client determines if + system supports x86_64 applications and sets HOSTTYPE and + platform accordingly. This allows us to link with the 32-bit + CUDA libraries. The one other effect is that the benchmarks + are run in 32-bit mode even on a 64-bit capable Mac. + - client: Async get_state RPC was not updating state.have_ati field. + + client/ + cs_cmdline.cpp + cs_platforms.cpp + clientgui/ + AsyncRPC.cpp + mac/ + config.h + mac_build/ + boinc.xcodeproj/ + project.pbxproj diff --git a/clientgui/AsyncRPC.cpp b/clientgui/AsyncRPC.cpp index b9f6b700c9..4a4e9b0d4f 100755 --- a/clientgui/AsyncRPC.cpp +++ b/clientgui/AsyncRPC.cpp @@ -990,6 +990,7 @@ void CMainDocument::HandleCompletedRPC() { exchangeBuf->version_info = arg1->version_info; exchangeBuf->executing_as_daemon = arg1->executing_as_daemon; exchangeBuf->have_cuda = arg1->have_cuda; + exchangeBuf->have_ati = arg1->have_ati; } break; case RPC_GET_RESULTS: