summaryrefslogtreecommitdiff
path: root/psutil/arch/windows/proc.c
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2023-04-19 14:42:01 -0700
committerGiampaolo Rodola <g.rodola@gmail.com>2023-04-19 14:42:01 -0700
commit7389b4874d5685daa869eff6166dda7491a6ab10 (patch)
tree2ac4d1b4a38b6c61f282ca50f2e63e0c6dc37bb8 /psutil/arch/windows/proc.c
parent08c24c0767a83faaa8fd9e1fb54723b6dc78f00c (diff)
parentaeceeb74b7bdd2d6f5769f9dfcce9256ddd7832c (diff)
downloadpsutil-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.c13
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().