From c8a12604d8e4531ac8e2bf7759ea369d6ab54d69 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 21 Jan 2018 17:09:58 +0000 Subject: struct _nt_thread_params: replace the thread_id member with a complete cid. --- src/thread/ntapi_tt_create_thread.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/thread/ntapi_tt_create_thread.c') diff --git a/src/thread/ntapi_tt_create_thread.c b/src/thread/ntapi_tt_create_thread.c index c0ab11a..2d46996 100644 --- a/src/thread/ntapi_tt_create_thread.c +++ b/src/thread/ntapi_tt_create_thread.c @@ -355,7 +355,8 @@ int32_t __stdcall __ntapi_tt_create_thread(nt_thread_params * params) __ntapi->zw_close(params->hthread); /* and finally */ - params->thread_id = (uint32_t)cid.thread_id; + params->cid.process_id = cid.process_id; + params->cid.thread_id = cid.thread_id; return NT_STATUS_SUCCESS; } -- cgit v1.2.3