Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
official-stockfish
GitHub Repository: official-stockfish/Stockfish
Path: blob/master/src/thread_win32_osx.h
376 views
1
/*
2
Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3
Copyright (C) 2004-2025 The Stockfish developers (see AUTHORS file)
4
5
Stockfish is free software: you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation, either version 3 of the License, or
8
(at your option) any later version.
9
10
Stockfish is distributed in the hope that it will be useful,
11
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
GNU General Public License for more details.
14
15
You should have received a copy of the GNU General Public License
16
along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
#ifndef THREAD_WIN32_OSX_H_INCLUDED
20
#define THREAD_WIN32_OSX_H_INCLUDED
21
22
#include <thread>
23
24
// On OSX threads other than the main thread are created with a reduced stack
25
// size of 512KB by default, this is too low for deep searches, which require
26
// somewhat more than 1MB stack, so adjust it to TH_STACK_SIZE.
27
// The implementation calls pthread_create() with the stack size parameter
28
// equal to the Linux 8MB default, on platforms that support it.
29
30
#if defined(__APPLE__) || defined(__MINGW32__) || defined(__MINGW64__) || defined(USE_PTHREADS)
31
32
#include <pthread.h>
33
#include <functional>
34
35
namespace Stockfish {
36
37
class NativeThread {
38
pthread_t thread;
39
40
static constexpr size_t TH_STACK_SIZE = 8 * 1024 * 1024;
41
42
public:
43
template<class Function, class... Args>
44
explicit NativeThread(Function&& fun, Args&&... args) {
45
auto func = new std::function<void()>(
46
std::bind(std::forward<Function>(fun), std::forward<Args>(args)...));
47
48
pthread_attr_t attr_storage, *attr = &attr_storage;
49
pthread_attr_init(attr);
50
pthread_attr_setstacksize(attr, TH_STACK_SIZE);
51
52
auto start_routine = [](void* ptr) -> void* {
53
auto f = reinterpret_cast<std::function<void()>*>(ptr);
54
// Call the function
55
(*f)();
56
delete f;
57
return nullptr;
58
};
59
60
pthread_create(&thread, attr, start_routine, func);
61
}
62
63
void join() { pthread_join(thread, nullptr); }
64
};
65
66
} // namespace Stockfish
67
68
#else // Default case: use STL classes
69
70
namespace Stockfish {
71
72
using NativeThread = std::thread;
73
74
} // namespace Stockfish
75
76
#endif
77
78
#endif // #ifndef THREAD_WIN32_OSX_H_INCLUDED
79
80