diff options
author | Giampaolo Rodola <g.rodola@gmail.com> | 2023-04-19 14:42:01 -0700 |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2023-04-19 14:42:01 -0700 |
commit | 7389b4874d5685daa869eff6166dda7491a6ab10 (patch) | |
tree | 2ac4d1b4a38b6c61f282ca50f2e63e0c6dc37bb8 /psutil/arch/windows/proc.c | |
parent | 08c24c0767a83faaa8fd9e1fb54723b6dc78f00c (diff) | |
parent | aeceeb74b7bdd2d6f5769f9dfcce9256ddd7832c (diff) | |
download | psutil-win-c-refact.tar.gz |
win, C, refact: rename process_*.c files to proc_*.cwin-c-refact
Diffstat (limited to 'psutil/arch/windows/proc.c')
-rw-r--r-- | psutil/arch/windows/proc.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/psutil/arch/windows/proc.c b/psutil/arch/windows/proc.c index fb5f7bb9..d9b69744 100644 --- a/psutil/arch/windows/proc.c +++ b/psutil/arch/windows/proc.c @@ -4,6 +4,13 @@ * found in the LICENSE file. */ +/* + * Process related functions. Original code was moved in here from + * psutil/_psutil_windows.c in 2023. For reference, here's the GIT blame + * history before the move: + * https://github.com/giampaolo/psutil/blame/59504a5/psutil/_psutil_windows.c +*/ + // Fixes clash between winsock2.h and windows.h #define WIN32_LEAN_AND_MEAN @@ -18,9 +25,9 @@ #include "../../_psutil_common.h" #include "proc.h" -#include "process_info.h" -#include "process_handles.h" -#include "process_utils.h" +#include "proc_info.h" +#include "proc_handles.h" +#include "proc_utils.h" // Raised by Process.wait(). |