Antti Kervinen
Antti Kervinen
> ``` > if runtime.NumCPU() > 1024 { > return > } > ``` NumCPU() returns the number of CPUs usable by the current process. The purpose of the `tryResetCPUAffinity()`...
@cyphar, I think you're right: why making a quick fix when the proper fix is not really that much harder. Updated. Playing as safe as the latest go runtime in...
> Hmm, should we try to fix unix.CPUSet instead? I'm afraid trying to make unix.CPUSet dynamic will break lots of code. At least I can't come up with any nice...
@cyphar, what's the new pinning support that you referred to in runtime-spec 1.4? Any pointers to commits/PRs?
No problem and thanks for clarification, @cyphar! We'll need to address setting those affinities, too, to support execCPUAffinity on 1024+ CPU systems. I'd keep the scope of this issue in...