diff options
| author | Giampaolo Rodola <g.rodola@gmail.com> | 2020-01-03 18:30:31 +0100 |
|---|---|---|
| committer | Giampaolo Rodola <g.rodola@gmail.com> | 2020-01-03 18:30:31 +0100 |
| commit | 1544ef413ed36a15757a73c04c4b440d04246bfc (patch) | |
| tree | 3d43eccb68448d162d90329aeb0d938dd6912ee6 /psutil/arch | |
| parent | 2559600d57c06c133f6b48c4907823c3bc8378aa (diff) | |
| download | psutil-1544ef413ed36a15757a73c04c4b440d04246bfc.tar.gz | |
rename global.c -> globals.c
Diffstat (limited to 'psutil/arch')
| -rw-r--r-- | psutil/arch/windows/cpu.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/disk.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/globals.c (renamed from psutil/arch/windows/global.c) | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/globals.h (renamed from psutil/arch/windows/global.h) | 0 | ||||
| -rw-r--r-- | psutil/arch/windows/net.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/process_handles.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/process_info.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/process_utils.c | 2 | ||||
| -rw-r--r-- | psutil/arch/windows/socks.c | 2 |
9 files changed, 8 insertions, 8 deletions
diff --git a/psutil/arch/windows/cpu.c b/psutil/arch/windows/cpu.c index e891dcc8..b44f6c0c 100644 --- a/psutil/arch/windows/cpu.c +++ b/psutil/arch/windows/cpu.c @@ -9,7 +9,7 @@ #include <PowrProf.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "../../_psutil_common.h" diff --git a/psutil/arch/windows/disk.c b/psutil/arch/windows/disk.c index 821f687d..cb36c0b3 100644 --- a/psutil/arch/windows/disk.c +++ b/psutil/arch/windows/disk.c @@ -9,7 +9,7 @@ #include <tchar.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "../../_psutil_common.h" diff --git a/psutil/arch/windows/global.c b/psutil/arch/windows/globals.c index 1aafcdd1..50505102 100644 --- a/psutil/arch/windows/global.c +++ b/psutil/arch/windows/globals.c @@ -11,7 +11,7 @@ #include <windows.h> #include <Python.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" // Needed to make these globally visible. diff --git a/psutil/arch/windows/global.h b/psutil/arch/windows/globals.h index 6764dde0..6764dde0 100644 --- a/psutil/arch/windows/global.h +++ b/psutil/arch/windows/globals.h diff --git a/psutil/arch/windows/net.c b/psutil/arch/windows/net.c index 92887f42..271ac06a 100644 --- a/psutil/arch/windows/net.c +++ b/psutil/arch/windows/net.c @@ -13,7 +13,7 @@ #include <ws2tcpip.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" static PIP_ADAPTER_ADDRESSES diff --git a/psutil/arch/windows/process_handles.c b/psutil/arch/windows/process_handles.c index 04b30f11..1b4b3db7 100644 --- a/psutil/arch/windows/process_handles.c +++ b/psutil/arch/windows/process_handles.c @@ -10,7 +10,7 @@ #include <Python.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "process_utils.h" CRITICAL_SECTION g_cs; diff --git a/psutil/arch/windows/process_info.c b/psutil/arch/windows/process_info.c index 757cabbe..1c7174f5 100644 --- a/psutil/arch/windows/process_info.c +++ b/psutil/arch/windows/process_info.c @@ -11,7 +11,7 @@ #include <windows.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "process_utils.h" #include "../../_psutil_common.h" diff --git a/psutil/arch/windows/process_utils.c b/psutil/arch/windows/process_utils.c index 1a721ba5..e10c7f5c 100644 --- a/psutil/arch/windows/process_utils.c +++ b/psutil/arch/windows/process_utils.c @@ -11,7 +11,7 @@ #include <Psapi.h> // EnumProcesses #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "process_utils.h" #include "../../_psutil_common.h" diff --git a/psutil/arch/windows/socks.c b/psutil/arch/windows/socks.c index 854ca955..50d29687 100644 --- a/psutil/arch/windows/socks.c +++ b/psutil/arch/windows/socks.c @@ -12,7 +12,7 @@ #include <ws2tcpip.h> #include "ntextapi.h" -#include "global.h" +#include "globals.h" #include "process_utils.h" #include "../../_psutil_common.h" |
