Commit e5bbb5e6 authored by Derek Lesho's avatar Derek Lesho Committed by Alexandre Julliard

ntoskrnl.exe: Implement process object constructor.

parent f534fbd3
......@@ -2451,11 +2451,23 @@ NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING Redi
}
static void *create_process_object( HANDLE handle )
{
PEPROCESS process;
if (!(process = alloc_kernel_object( PsProcessType, handle, sizeof(*process), 0 ))) return NULL;
process->header.Type = 3;
process->header.WaitListHead.Blink = INVALID_HANDLE_VALUE; /* mark as kernel object */
return process;
}
static const WCHAR process_type_name[] = {'P','r','o','c','e','s','s',0};
static struct _OBJECT_TYPE process_type =
{
process_type_name
process_type_name,
create_process_object
};
POBJECT_TYPE PsProcessType = &process_type;
......
......@@ -28,6 +28,10 @@ struct _OBJECT_TYPE
void (*release)(void*); /* called when the last reference is released */
};
struct _EPROCESS {
DISPATCHER_HEADER header;
};
struct _KTHREAD
{
DISPATCHER_HEADER header;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment