put thread into completion wait queue when it starts running
| 95 | |
| 96 | // put thread into completion wait queue when it starts running |
| 97 | void running(Thread&& thd) |
| 98 | { |
| 99 | Firebird::MutexLockGuard g(threadsMutex, FB_FUNCTION); |
| 100 | |
| 101 | threads.push_back(Thrd(std::move(thd), false)); |
| 102 | } |
| 103 | |
| 104 | void houseKeeping() |
| 105 | { |
no test coverage detected