mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=1578
This commit is contained in:
parent
e180f27fd9
commit
3e2ee824b5
|
@ -289,7 +289,7 @@ int boinc_get_init_data(APP_INIT_DATA& app_init_data) {
|
||||||
|
|
||||||
bool boinc_time_to_checkpoint() {
|
bool boinc_time_to_checkpoint() {
|
||||||
#ifdef __APPLE_CC__
|
#ifdef __APPLE_CC__
|
||||||
YieldToAnyThread();
|
//YieldToAnyThread();
|
||||||
#elif _WIN32
|
#elif _WIN32
|
||||||
DWORD eventState;
|
DWORD eventState;
|
||||||
// Check if core client has requested us to exit
|
// Check if core client has requested us to exit
|
||||||
|
@ -552,5 +552,8 @@ int update_app_progress(double frac_done, double cpu_t, double cp_cpu_t, int ws_
|
||||||
frac_done, cpu_t, cp_cpu_t, ws_t
|
frac_done, cpu_t, cp_cpu_t, ws_t
|
||||||
);
|
);
|
||||||
|
|
||||||
return app_client_shm->send_msg(msg_buf, APP_CORE_WORKER_SEG);
|
if (app_client_shm)
|
||||||
|
return app_client_shm->send_msg(msg_buf, APP_CORE_WORKER_SEG);
|
||||||
|
else
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue