From 1c3dbc3267caef2169dbf1e7c21dec288bf91c5c Mon Sep 17 00:00:00 2001 From: Andrii Kroitor Date: Mon, 23 Mar 2015 19:37:21 +0100 Subject: [PATCH] ecore_exe: fix ecore_exe_pid_get on windows Summary: ecore_exe_pid_get returns exe->pid value so it should be filled @fix Reviewers: raster, seoz, cedric, Hermet Subscribers: NikaWhite, cedric, reutskiy.v.v Differential Revision: https://phab.enlightenment.org/D2195 Signed-off-by: Cedric BAIL --- src/lib/ecore/ecore_exe_win32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ecore/ecore_exe_win32.c b/src/lib/ecore/ecore_exe_win32.c index 4b0eb72..7a9f41f 100644 --- a/src/lib/ecore/ecore_exe_win32.c +++ b/src/lib/ecore/ecore_exe_win32.c @@ -484,6 +484,7 @@ _impl_ecore_exe_eo_base_finalize(Eo *obj, Ecore_Exe_Data *exe) exe->process = pi.hProcess; exe->process_thread = pi.hThread; exe->process_id = pi.dwProcessId; + exe->pid = pi.dwProcessId; exe->thread_id = pi.dwThreadId; exe->h_close = ecore_main_win32_handler_add(exe->process, -- 2.7.4