Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-03-06 08:20:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-06 08:21:24 +0300
commitdd61787b2545d7bd091211af6650c8a78ba8e707 (patch)
treee4329010c7a656135589ec9c2859c7e5eb62befb /source/blender/blenlib
parentecd086ac32241c883689f3522cabc324a8e0064c (diff)
Cleanup: unused function warning
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/threads.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index d1aa3232173..89574dd395f 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -841,6 +841,7 @@ void BLI_threaded_malloc_end(void)
/* **** Special functions to help performance on crazy NUMA setups. **** */
+#if 0 /* UNUSED */
static bool check_is_threadripper2_alike_topology(void)
{
/* NOTE: We hope operating system does not support CPU hotswap to
@@ -920,6 +921,7 @@ static void threadripper_put_thread_on_fast_node(void)
/* See additional note about NUMA disabled in BIOS above. */
numaAPI_RunThreadOnNode(0);
}
+#endif /* UNUSED */
void BLI_thread_put_process_on_fast_node(void)
{