()
| 5 | } |
| 6 | |
| 7 | func newTimerPool() *timerPool { |
| 8 | t := &timerPool{ |
| 9 | p: make([]*xtimer, 0, 4096), |
| 10 | } |
| 11 | return t |
| 12 | } |
| 13 | |
| 14 | func (t *timerPool) Get() *xtimer { |
| 15 | var x *xtimer = nil |
no outgoing calls
no test coverage detected
searching dependent graphs…