| 120 | // the target to be suspended already. |
| 121 | typedef void (*RemainedFn)(void*); |
| 122 | void set_remained(RemainedFn cb, void* arg) { |
| 123 | _last_context_remained = cb; |
| 124 | _last_context_remained_arg = arg; |
| 125 | } |
| 126 | |
| 127 | // Suspend caller for at least |timeout_us| microseconds. |
| 128 | // If |timeout_us| is 0, this function does nothing. |
no outgoing calls
no test coverage detected