| 388 | } // namespace |
| 389 | |
| 390 | ISimpleThread::ISimpleThread(size_t stackSize) |
| 391 | : TThread(TParams(ThreadProcWrapper<ISimpleThread>, reinterpret_cast<void*>(this), stackSize)) |
| 392 | { |
| 393 | } |
| 394 | |
| 395 | #if defined(_MSC_VER) |
| 396 | // This beautiful piece of code is borrowed from |