e temp module - kill tempget process not terminate to ensure death

it seems on openbsd sigterm doesnt kill things... sigkill does so move
to that. fixes T4121

@fix
This commit is contained in:
Carsten Haitzler 2016-07-20 18:12:04 +09:00
parent 54fa1a0ca4
commit bd43f07046
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ _gc_shutdown(E_Gadcon_Client *gcc)
if (inst->tempget_exe)
{
ecore_exe_terminate(inst->tempget_exe);
ecore_exe_kill(inst->tempget_exe);
ecore_exe_free(inst->tempget_exe);
inst->tempget_exe = NULL;
}
@ -305,7 +305,7 @@ temperature_face_update_config(Config_Face *inst)
if (inst->tempget_exe)
{
ecore_exe_terminate(inst->tempget_exe);
ecore_exe_kill(inst->tempget_exe);
ecore_exe_free(inst->tempget_exe);
inst->tempget_exe = NULL;
}