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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-18 21:15:38 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-18 22:58:56 +0300
commitc5eb10b1104bb0f15695be5d4394bbb8303ad092 (patch)
tree276f02cb02328bde7e080352313ae5b9d0cbd938 /intern/cycles/util/util_thread.h
parent1e3203986c0ae0abf27399336300e676190747bb (diff)
Fix T60585: Cycles not using all cores on threadripper, after recent changes.
Diffstat (limited to 'intern/cycles/util/util_thread.h')
-rw-r--r--intern/cycles/util/util_thread.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/intern/cycles/util/util_thread.h b/intern/cycles/util/util_thread.h
index d21a7a8c773..9ae9af25e6b 100644
--- a/intern/cycles/util/util_thread.h
+++ b/intern/cycles/util/util_thread.h
@@ -54,10 +54,6 @@ public:
static void *run(void *arg);
bool join();
- /* For an existing thread descriptor which is NOT running yet, assign node
- * on which it should be running. */
- void schedule_to_node(int node);
-
protected:
function<void()> run_cb_;
std::thread thread_;