[PATCH] ntdll: Only build Linux-specific functions on Linux

Gerald Pfeifer gerald at pfeifer.com
Sun Dec 6 14:46:25 CST 2020


logical_proc_info_add_by_id, logical_proc_info_add_cache,
logical_proc_info_add_group, and logical_proc_info_add_numa_node
are only useful and invoked on Linux, so disable their build
elsewhere.

(Without this compilers will, rightfully, warn about unused functions.
GCC definitely does.)

Signed-off-by: Gerald Pfeifer <gerald at pfeifer.com>
---
 dlls/ntdll/unix/system.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/ntdll/unix/system.c b/dlls/ntdll/unix/system.c
index a889b2e020c..5130b4c18ba 100644
--- a/dlls/ntdll/unix/system.c
+++ b/dlls/ntdll/unix/system.c
@@ -506,6 +506,8 @@ void init_cpu_info(void)
            cpu_info.Architecture, cpu_info.Level, cpu_info.Revision, cpu_info.FeatureSet );
 }
 
+#ifdef linux
+
 static BOOL grow_logical_proc_buf( SYSTEM_LOGICAL_PROCESSOR_INFORMATION **pdata, DWORD *max_len )
 {
     SYSTEM_LOGICAL_PROCESSOR_INFORMATION *new_data;
@@ -752,6 +754,8 @@ static BOOL logical_proc_info_add_group( SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX
     return TRUE;
 }
 
+#endif
+
 #ifdef linux
 
 /* Helper function for counting bitmap values as commonly used by the Linux kernel
-- 
2.28.0



More information about the wine-devel mailing list