summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2021-12-28 17:15:45 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2021-12-28 17:15:45 +0100
commit02628a66f1bfdba4b54895f51cef9bee5198308f (patch)
treee619742d98069f5be9272c2c250d2f6700b39f4e
parent3a1cdf6d32ec6175d4e2e4888caa3d724cc6f2fb (diff)
downloadpsutil-02628a66f1bfdba4b54895f51cef9bee5198308f.tar.gz
port Process.resume()
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
-rw-r--r--HISTORY.rst11
1 files changed, 6 insertions, 5 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 7ec3ce32..ab1c4a33 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -360,9 +360,10 @@ XXXX-XX-XX
**Enhancements**
-- 1379_: [Windows] Process suspend() and resume() now use NtSuspendProcess
- and NtResumeProcess instead of stopping/resuming all threads of a process.
- This is faster and more reliable (aka this is what ProcessHacker does).
+- 1379_: [Windows] `Process.suspend()`_ and `Process.resume()`_ now use
+ ``NtSuspendProcess`` and ``NtResumeProcess`` instead of stopping/resuming all
+ threads of a process. This is faster and more reliable (aka this is what
+ ProcessHacker does).
- 1420_: [Windows] in case of exception `disk_usage()`_ now also shows the path
name.
- 1422_: [Windows] Windows APIs requiring to be dynamically loaded from DLL
@@ -2154,7 +2155,7 @@ DeprecationWarning.
- 130_: a race condition can cause IOError exception be raised on
Linux if process disappears between open() and subsequent read() calls.
- 145_: WindowsError was raised instead of psutil.AccessDenied when using
- process resume() or suspend() on Windows.
+ `Process.resume()`_ or `Process.suspend()`_ on Windows.
- 146_: `Process.exe()`_ property on Linux can raise TypeError if path contains
NULL bytes.
- 151_: `Process.exe()`_ and `Process.cwd()`_ for PID 0 on Linux return
@@ -2240,7 +2241,7 @@ DeprecationWarning.
- 51_: `Process.cwd()`_ (Windows and Linux only)
- 59_: `Process.is_running()`_ is now 10 times faster
- 61_: added supoprt for FreeBSD 64 bit
-- 71_: implemented suspend/resume process
+- 71_: implemented `Process.suspend()`_ and `Process.resume()`_ process
- 75_: python 3 support
**Bug fixes**