Commit d430efb6 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

server: Support process job lists.

parent ddd161f3
......@@ -1276,6 +1276,18 @@ DECL_HANDLER(new_process)
job = job->parent;
}
for (i = 0; i < job_handle_count; ++i)
{
job = get_job_obj( current->process, job_handles[i], JOB_OBJECT_ASSIGN_PROCESS );
add_job_process( job, process );
release_object( job );
if (get_error())
{
release_job_process( process );
goto done;
}
}
/* connect to the window station */
connect_process_winstation( process, parent_thread, parent );
......
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