mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9715
This commit is contained in:
parent
e51b548a7a
commit
e5b51c247a
|
@ -620,16 +620,14 @@ static void handle_process_control_msg() {
|
||||||
if (match_tag(buf, "<abort/>")) {
|
if (match_tag(buf, "<abort/>")) {
|
||||||
boinc_status.abort_request = true;
|
boinc_status.abort_request = true;
|
||||||
if (options.direct_process_action) {
|
if (options.direct_process_action) {
|
||||||
#ifdef _WIN32
|
#if defined(_WIN32)
|
||||||
diagnostics_set_aborted_via_gui_flag();
|
|
||||||
// Cause a controlled assert and dump the callstacks.
|
// Cause a controlled assert and dump the callstacks.
|
||||||
|
diagnostics_set_aborted_via_gui_flag();
|
||||||
DebugBreak();
|
DebugBreak();
|
||||||
#else
|
#elif defined(__APPLE__)
|
||||||
#ifdef __APPLE__
|
|
||||||
PrintBacktrace();
|
PrintBacktrace();
|
||||||
#endif
|
#endif
|
||||||
boinc_exit(0);
|
boinc_exit(ERR_ABORTED_VIA_GUI);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (match_tag(buf, "<reread_app_info/>")) {
|
if (match_tag(buf, "<reread_app_info/>")) {
|
||||||
|
|
|
@ -3158,3 +3158,14 @@ Charlie 23 Mar 2006
|
||||||
boinc_api.C
|
boinc_api.C
|
||||||
lib/
|
lib/
|
||||||
mac_backtrace.C
|
mac_backtrace.C
|
||||||
|
|
||||||
|
Rom 23 Mar 2006
|
||||||
|
- Fix the boinc_exit(0) call when an abort happens to
|
||||||
|
boinc_exit(ERR_ABORTED_VIA_GUI).
|
||||||
|
- Remove a duplicated class identifier so that the manager will
|
||||||
|
with g++ 4.1
|
||||||
|
|
||||||
|
api/
|
||||||
|
boinc_api.C
|
||||||
|
clientgui/
|
||||||
|
BOINCTaskBar.h
|
||||||
|
|
|
@ -76,7 +76,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __WXMSW__
|
#ifndef __WXMSW__
|
||||||
inline bool CTaskBarIcon::IsBalloonsSupported() {
|
inline bool IsBalloonsSupported() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue