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:
Diffstat (limited to 'intern/cycles/util/task.h')
-rw-r--r--intern/cycles/util/task.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/intern/cycles/util/task.h b/intern/cycles/util/task.h
index 1a8f512b83a..0117c51d05c 100644
--- a/intern/cycles/util/task.h
+++ b/intern/cycles/util/task.h
@@ -86,10 +86,9 @@ class TaskScheduler {
static void exit();
static void free_memory();
- /* Approximate number of threads that will work on task, which may be lower
- * or higher than the actual number of threads. Use as little as possible and
- * leave splitting up tasks to the scheduler. */
- static int num_threads();
+ /* Maximum number of threads that will work on task. Use as little as
+ * possible and leave scheduling and splitting up tasks to the scheduler. */
+ static int max_concurrency();
protected:
static thread_mutex mutex;