-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
os/exec: export thread id come from CreateProcess in windows #32404
Comments
What is the value of |
|
What @atetubou is asking is for the thread handle, not the thread id. |
@maruel I'm thinking export thread id instead of thread handle now. |
Change https://golang.org/cl/180398 mentions this issue: |
What is wrong with using CreateToolhelp32Snapshot ? There is a runtime.TestNumCPU that does what you want. Why cannot you do the same?
Adding just dwThreadId will not work, because it will become invalid the moment hThread is closed. syscall.SysProcAttr is already complicated enough. And syscall.SysProcAttr at this moment is only used to pass data into CreateProcess. You propose syscall.SysProcAttr to be used to return data from CreateProcess. And whoever uses hThread must remember to closes it as soon as they are done with it, otherwise they will end up with leaked handles. And errors caused by leaked handles are always difficult to debug. Is your use case worth complicating syscall.SysProcAttr? Alex |
If I were to propose on linux: "On every process creation, we'll ask the OS to take a snapshot of every threads on the system, allocating a significant amount of kernel memory scaled to the active workload; more workload, the slower it is" I think you would think it's a very bad idea that doesn't scale. I don't see why this would be more acceptable on Windows. That's my objection on
This is plain untrue, I don't know why you think thread ID changes on Windows. You can use OpenThread by the thread id. But So yes, it's worth it. A single Chrome compile is over 50000 process creation and is both highly I/O and CPU bound. What @atetubou proposes is the less disruptive option given the current constraints, and also the most performant one. |
But we don't call CreateProcess with such |
Not yet. We will once we implement lowering the process token integrity level, but that's a separate issue outside the scope of the issue here. |
Maybe you are right, maybe you are wrong. I have no idea how expensive that scenario would be in your setup. But I would actually try and see.
That is how I interpreted
from https://docs.microsoft.com/en-us/windows/desktop/api/processthreadsapi/ns-processthreadsapi-process_information How can you be sure that all handles to the thread are not closed and the thread object is freed by the time you decide to use dwThreadId ?
What you propose is complicated and unsafe new API that all users of syscall.SysProcAttr need to learn without actually using it. If performance is so important to you, you should just copy whatever code you need and adjust the copy as you see fit. Alex |
ref: https://docs.microsoft.com/en-us/windows/desktop/api/tlhelp32/nf-tlhelp32-thread32first https://docs.microsoft.com/en-us/windows/desktop/api/tlhelp32/nf-tlhelp32-thread32next https://docs.microsoft.com/en-us/windows/desktop/api/tlhelp32/ns-tlhelp32-tagthreadentry32 Update golang#32404 Change-Id: I6c8150d1077cf1e8abd0b06403313fef01f4b6e4 Reviewed-on: https://go-review.googlesource.com/c/sys/+/180918 Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-by: Alex Brainman <alex.brainman@gmail.com> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This is feature request.
On windows, we cannot get thread id of spawned process by os/exec package without using Tool Help Library.
But I want to use thread id returned from CreateProcess api.
Because I'd like to use Job Objects in our go application.
In our application, we need to create process with CREATE_SUSPENDED flag to assign job object before process starts.
But without thread id, it is difficult to get thread handle passed to ResumeThread for created process.
Can I add a filed
tid
to syscall.SysProcAttr, so that I can know thread id of created process?The text was updated successfully, but these errors were encountered: