* Thread entry point. */
| 310 | * Thread entry point. |
| 311 | */ |
| 312 | void _runEntryPoint() noexcept |
| 313 | { |
| 314 | if (fName.isNotEmpty()) |
| 315 | setCurrentThreadName(fName); |
| 316 | |
| 317 | // report ready |
| 318 | fSignal.signal(); |
| 319 | |
| 320 | try { |
| 321 | run(); |
| 322 | } catch(...) {} |
| 323 | |
| 324 | // done |
| 325 | _init(); |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * Thread entry point. |
nothing calls this directly
no test coverage detected