Re: [go-nuts] Processor cores

2022-05-15 Thread Tharaneedharan Vilwanathan
Thanks Robert! Regards dharani On Sun, May 15, 2022 at 3:53 PM robert engels wrote: > No it does not. See runtime/proc.go if you want to learn more. > > On May 15, 2022, at 5:28 PM, Tharaneedharan Vilwanathan < > vdhar...@gmail.com> wrote: > > Hi All, > > I have a quick question about

Re: [go-nuts] Processor cores

2022-05-15 Thread robert engels
No it does not. See runtime/proc.go if you want to learn more. > On May 15, 2022, at 5:28 PM, Tharaneedharan Vilwanathan > wrote: > > Hi All, > > I have a quick question about processor core usage. > > Many processors like ARM, Apple and Intel have performance and efficiency > cores. Does

[go-nuts] Processor cores

2022-05-15 Thread Tharaneedharan Vilwanathan
Hi All, I have a quick question about processor core usage. Many processors like ARM, Apple and Intel have performance and efficiency cores. Does Go scheduler recognize these cores as different types and treat them accordingly? Or is it something that the OS deals with and a Go program has no

[go-nuts] CertPool->SystemCertPool - API Behavior of Windows

2022-05-15 Thread sre.ag...@gmail.com
Hi All, I am trying to use X509 package with Window Certificate store. It looks like the X509/SystemCertPool implementation on Windows just returns an empty cert pool. https://github.com/golang/go/blob/335569b59804f8d14bdb9c7ee2e8b0c2268226ae/src/crypto/x509/root_windows.go#L13 In the older