Giampaolo Rodola
Giampaolo Rodola
> Searching through the code, there's no include of anywhere so I suspect none of the __FreeBSD_version tests work as intended. This is bad. Does adding `#include ` in `psutil/psutil/arch/freebsd/mem.c`...
Setting priority = critical. PRs are welcome.
Fixed by https://github.com/giampaolo/psutil/pull/2114.
What do you mean by "sanitized"? `Process.status()` is taken from the third element of /proc/pid/stat. For some reason on your machine it's `0`, which is why psutil reports the status...
> isup is correct, however due to no cable inserted into enp0s31f6 that doesn't mean a network connection is possible. This has recently been fixed in https://github.com/giampaolo/psutil/issues/1830 / #1831 (`isup...
According to this http://askubuntu.com/a/5419 GPU info is not standardized and not retrievable via /proc as we currently do for the CPU stats. A tool like "Intel GPU Top" suggests that...
I'm willing to reopen this to investigate whether there are viable options to implement this at least for nvidia cards as it seems they are the most used in the...
Mmmm what happens if you do `pip install --no-binary :all: psutil`? This should install psutil from sources.
That means the wheels that we currently produce are not compatible with macOS Big Sur / ARM, so it should probably be addresed / reported at https://github.com/pypa/wheel.
These flags are pretty useless since there are no exposed constants to compare them against (`IFF_BROADCAST`, `IFF_LOOPBACK`, etc). A solution to this could be turning them into strings, like: ```...