Let's use SIGKILL instead of just SIGTERM. The user has to explicitly
confirm killing the app anyway, and some stuck apps might not exit on SIGTERM. svn path=/trunk/kdebase/kwin/; revision=261231
This commit is contained in:
parent
fffdc0d01a
commit
7d10a9a2c9
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ int main( int argc, char* argv[] )
|
|||
proc.start( KProcess::DontCare );
|
||||
}
|
||||
else
|
||||
::kill( pid, SIGTERM );
|
||||
::kill( pid, SIGKILL );
|
||||
XKillClient( qt_xdisplay(), id );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue