| 17 | } ticker_t; |
| 18 | |
| 19 | static inline void |
| 20 | ticker_init(ticker_t *ticker, int32_t nticks) { |
| 21 | ticker->tick = nticks; |
| 22 | ticker->nticks = nticks; |
| 23 | } |
| 24 | |
| 25 | static inline void |
| 26 | ticker_copy(ticker_t *ticker, const ticker_t *other) { |
no outgoing calls