MXS-1360 Make it possible to specify thread stack size
It is now possible to specify the thread stack size to be used, when a new thread is created. This will subsequently be used for allowing the stack size to be specified for worker threads.
This commit is contained in:
@ -847,7 +847,7 @@ bool Worker::start()
|
||||
{
|
||||
m_started = true;
|
||||
|
||||
if (!thread_start(&m_thread, &Worker::thread_main, this))
|
||||
if (!thread_start(&m_thread, &Worker::thread_main, this, 0))
|
||||
{
|
||||
m_started = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user