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>2014-04-17 07:46:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-17 10:04:28 +0400
commit1b9db9911d9cbcb81d58277084b9c4c5daf84e8a (patch)
treeb840209b9de94432cb4e5d61567e46741870b504 /source/blender/blenlib/BLI_threads.h
parent4219e44f1d89cfd6ccdf3adc0fd73e22ae7b6df3 (diff)
Code cleanup: use bools
also rename BLI_omp_thread_count -> BLI_system_thread_count_omp
Diffstat (limited to 'source/blender/blenlib/BLI_threads.h')
-rw-r--r--source/blender/blenlib/BLI_threads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_threads.h b/source/blender/blenlib/BLI_threads.h
index b522d95ddae..1c9e75d950a 100644
--- a/source/blender/blenlib/BLI_threads.h
+++ b/source/blender/blenlib/BLI_threads.h
@@ -75,7 +75,7 @@ int BLI_system_thread_count(void); /* gets the number of threads the system
void BLI_system_num_threads_override_set(int num);
int BLI_system_num_threads_override_get(void);
-int BLI_omp_thread_count(void); /* gets the number of openmp threads the system can make use of */
+int BLI_system_thread_count_omp(void);
/* Global Mutex Locks
*