From 4dab22ce28b3174cc76ff5375fa59e49deb39961 Mon Sep 17 00:00:00 2001 From: Daniel Hsu Date: Tue, 6 Jul 2004 18:09:30 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=3789 --- checkin_notes | 8 ++++++-- client/main.C | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index e660acc3ae..06c0cc0d2e 100755 --- a/checkin_notes +++ b/checkin_notes @@ -14701,7 +14701,11 @@ Brian 6 July 2004 pers_file_xfer.C,h scheduler_op.C,h - - +Daniel 2004-07-06 + - client: when a project fails to attach, call quit_activities() + before exit(1) so other running apps will terminate. + + client/ + main.C diff --git a/client/main.C b/client/main.C index 4df911ff5f..17fd6b4b8a 100644 --- a/client/main.C +++ b/client/main.C @@ -72,6 +72,7 @@ void project_add_failed(PROJECT* project) { ); } gstate.detach_project(project); + gstate.quit_activities(); exit(1); }