diff options
author | wiggin15 <wiggin15@yahoo.com> | 2017-09-26 14:52:42 +0300 |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2017-09-26 19:52:42 +0800 |
commit | 1ebe625e5aa21b33e9de5652c305d1d0a2147059 (patch) | |
tree | 79448f6cc3df6d892c2fe22ead726b2a94a52111 /psutil/_common.py | |
parent | 730e0fbba6a2ef4a01a5a67759e15dad5613d3a9 (diff) | |
download | psutil-1ebe625e5aa21b33e9de5652c305d1d0a2147059.tar.gz |
AIX support (#1123)
* AIX support
* AIX support
* AIX support
* AIX support - use get_procfs_path() instead of /proc
* AIX support - group sections like in other modules
* AIX support
* AIX support
* AIX support
* AIX support - remove unnecessary dict copy
Diffstat (limited to 'psutil/_common.py')
-rw-r--r-- | psutil/_common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/psutil/_common.py b/psutil/_common.py index 7c4af3d8..2d562f93 100644 --- a/psutil/_common.py +++ b/psutil/_common.py @@ -81,6 +81,7 @@ OPENBSD = sys.platform.startswith("openbsd") NETBSD = sys.platform.startswith("netbsd") BSD = FREEBSD or OPENBSD or NETBSD SUNOS = sys.platform.startswith("sunos") or sys.platform.startswith("solaris") +AIX = sys.platform.startswith("aix") # =================================================================== |