mirror of https://github.com/BOINC/boinc.git
fix to compile boinc_api.cpp on Windows
looks like copy/paste error, retval is not defined there David, please review & change if necessary svn path=/trunk/boinc/; revision=20802
This commit is contained in:
parent
b60fe84bc4
commit
99d7de0508
|
@ -595,7 +595,7 @@ static void exit_from_timer_thread(int status) {
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
// TerminateProcess() doesn't work if there are suspended threads?
|
// TerminateProcess() doesn't work if there are suspended threads?
|
||||||
if (boinc_status.suspended) {
|
if (boinc_status.suspended) {
|
||||||
retval = resume_activities();
|
resume_activities();
|
||||||
}
|
}
|
||||||
// this seems to work OK on Windows
|
// this seems to work OK on Windows
|
||||||
//
|
//
|
||||||
|
|
|
@ -1687,3 +1687,11 @@ Bernd 5 Mar 2010
|
||||||
|
|
||||||
lib/
|
lib/
|
||||||
Makefile.mingw
|
Makefile.mingw
|
||||||
|
|
||||||
|
Bernd 5 Mar 2010
|
||||||
|
fix to compile boinc_api.cpp on Windows
|
||||||
|
looks like copy/paste error, retval is not defined there
|
||||||
|
David, please review & change if necessary
|
||||||
|
|
||||||
|
api/
|
||||||
|
boinc_api.cpp
|
||||||
|
|
Loading…
Reference in New Issue