| 23 | |
| 24 | |
| 25 | CStatus init() override { |
| 26 | CGRAPH_FUNCTION_BEGIN |
| 27 | CGRAPH_ASSERT_INIT(false) |
| 28 | |
| 29 | is_init_ = true; |
| 30 | thread_ = std::move(std::thread(&UThreadPrimary::run, this)); |
| 31 | setSchedParam(); |
| 32 | setAffinity(index_); |
| 33 | CGRAPH_FUNCTION_END |
| 34 | } |
| 35 | |
| 36 | |
| 37 | /** |
nothing calls this directly
no test coverage detected