diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/DEVNOTES | 6 | ||||
-rw-r--r-- | docs/index.rst | 23 |
2 files changed, 8 insertions, 21 deletions
diff --git a/docs/DEVNOTES b/docs/DEVNOTES index 7fe14f7d..915754d6 100644 --- a/docs/DEVNOTES +++ b/docs/DEVNOTES @@ -34,18 +34,12 @@ FEATURES - #772: extended net_io_counters() metrics. -- #900: wheels for macOS and Linux. - - #922: extended net_io_stats() info. - #914: extended platform specific process info. - #898: wifi stats -- #893: (BSD) process environ - -- #809: (BSD) per-process resource limits (rlimit()). - - (UNIX) process root (different from cwd) - #782: (UNIX) process num of signals received. diff --git a/docs/index.rst b/docs/index.rst index 612cafb8..595130cd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -73,28 +73,21 @@ Sponsors Supporters ---------- -None yet. - .. raw:: html + <div> + <a href="https://github.com/dbwiddis"><img height="40" width="40" title="Daniel Widdis" src="https://avatars1.githubusercontent.com/u/9291703?s=88&v=4" /></a> + <a href="https://github.com/aristocratos"><img height="40" width="40" title="aristocratos" src="https://avatars3.githubusercontent.com/u/59659483?s=96&v=4" /></a> + </div> + <br /> <sup><a href="https://github.com/sponsors/giampaolo">add your avatar</a></sup> Install ======= -Linux Ubuntu / Debian:: - - sudo apt-get install gcc python3-dev - sudo pip3 install psutil - -Linux Redhat:: - - sudo yum install gcc python3-devel - sudo pip3 install psutil - -Windows:: +On Linux, Windows, macOS:: - pip3 install psutil + pip install psutil For other platforms see more detailed `install <https://github.com/giampaolo/psutil/blob/master/INSTALL.rst>`_ @@ -2438,7 +2431,7 @@ Kill process tree timeout=None, on_terminate=None): """Kill a process tree (including grandchildren) with signal "sig" and return a (gone, still_alive) tuple. - "on_terminate", if specified, is a callabck function which is + "on_terminate", if specified, is a callback function which is called as soon as a child terminates. """ assert pid != os.getpid(), "won't kill myself" |