Lomanic

Results 96 comments of Lomanic

Can you paste the content of your `/proc/cpuinfo` where you had this issue?

To be honest, the `WithContext()` functions were initially introduced because of wmi disastrous performance on windows https://github.com/shirou/gopsutil/issues/469#issuecomment-352672929, I personally wouldn't mind them to be simply removed instead (that would be...

With gopsutil cloned locally, do these tests fail as a non privileged user? `go test -v -run=TestLong ./process`

This is a limitation of the OS, see https://github.com/shirou/gopsutil/issues/1288#issuecomment-1103214757, you should run your program with setuid 0.

We can't know if the process name is longer than 15 characters or not via kproc (name in kproc is capped to that length), hence why we then fallback to...

Scroll to the bottom of the cache listing and tap "Open in browser" to open the cache with cgeo.

Is there really any point following this latest trend in cgeo? Did you have remarks that the current UI looks outdated? I really feel that Material3 with its big rounded...

We don't have access to this kind of hardware/operating system, we have to rely on external contributions for this (like in https://github.com/shirou/gopsutil/pull/834#issuecomment-593023654). We already partially support aix ``` cpu/cpu_aix.go cpu/cpu_aix_cgo.go...

`cpu.Info()` shells out to an external process only if you disable cgo (` CGO_ENABLED=0`), it's defined twice in https://github.com/shirou/gopsutil/blob/042e63609b4e22a95b6201d48c874b62a976d133/cpu/cpu_aix_nocgo.go#L53 and https://github.com/shirou/gopsutil/blob/master/cpu/cpu_aix_cgo.go#L46 If you were to implement the missing packages with...

If you have a riscv64 FreeBSD host with a Go compiler, please run `mktypes.sh` and open a merge request with the generated files.