| 124 | } |
| 125 | |
| 126 | hx::thread::ThreadImpl_obj::ThreadImpl_obj(const int _id) |
| 127 | : id(_id) |
| 128 | , native(new Native()) |
| 129 | , scratch(std::numeric_limits<uint16_t>::max(), std::numeric_limits<uint16_t>::max()) |
| 130 | , slots(0, 0) { } |
| 131 | |
| 132 | hx::thread::ThreadImpl_obj::ThreadImpl_obj(const int _id, Thread_obj::CreateFunction _job, CountingSemaphore _semaphore) |
| 133 | : id(_id) |