Ecore_Exe: remove process_id field as it is a duplicate of the pid one

It breaks ABI on Windows (not a big deal at this stage).

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Vincent Torri 2015-04-24 14:49:13 +02:00 committed by Cedric BAIL
parent b0da753aaa
commit a53c52dee0
2 changed files with 1 additions and 3 deletions

View File

@ -76,7 +76,6 @@ struct _Ecore_Exe_Data
#ifdef _WIN32
HANDLE process;
HANDLE process_thread;
DWORD process_id;
DWORD thread_id;
Ecore_Win32_Handler *h_close;
Ecore_Exe_Win32_Signal sig;

View File

@ -60,7 +60,7 @@ _ecore_exe_close_cb(void *data,
e->exit_code = exit_code;
e->exited = 1;
e->pid = exe->process_id;
e->pid = exe->pid;
e->exe = obj;
ecore_event_add(ECORE_EXE_EVENT_DEL, e,
@ -483,7 +483,6 @@ _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;