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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/Utils/Thread.hpp')
-rw-r--r--src/slic3r/Utils/Thread.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/slic3r/Utils/Thread.hpp b/src/slic3r/Utils/Thread.hpp
deleted file mode 100644
index e9c76d2ab..000000000
--- a/src/slic3r/Utils/Thread.hpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef THREAD_HPP
-#define THREAD_HPP
-
-#include <utility>
-#include <boost/thread.hpp>
-
-namespace Slic3r {
-
-template<class Fn>
-inline boost::thread create_thread(boost::thread::attributes &attrs, Fn &&fn)
-{
- // Duplicating the stack allocation size of Thread Building Block worker
- // threads of the thread pool: allocate 4MB on a 64bit system, allocate 2MB
- // on a 32bit system by default.
-
- attrs.set_stack_size((sizeof(void*) == 4) ? (2048 * 1024) : (4096 * 1024));
- return boost::thread{attrs, std::forward<Fn>(fn)};
-}
-
-template<class Fn> inline boost::thread create_thread(Fn &&fn)
-{
- boost::thread::attributes attrs;
- return create_thread(attrs, std::forward<Fn>(fn));
-}
-
-}
-
-#endif // THREAD_HPP