| 33 | static struct thread *active_thread; |
| 34 | |
| 35 | static inline int thread_can_yield(const struct thread *t) |
| 36 | { |
| 37 | return (t != NULL && t->can_yield > 0); |
| 38 | } |
| 39 | |
| 40 | static inline void set_current_thread(struct thread *t) |
| 41 | { |
no outgoing calls
no test coverage detected