(p *timerPool)
| 40 | } |
| 41 | |
| 42 | func newTimerList(p *timerPool) *timerList { |
| 43 | timerlist := &timerList{ |
| 44 | head: nil, |
| 45 | tail: nil, |
| 46 | pool: p, |
| 47 | } |
| 48 | return timerlist |
| 49 | } |
| 50 | |
| 51 | func (this *timerList) add_timer(timer *xtimer) { |
| 52 | timer.next = nil |
no outgoing calls
no test coverage detected
searching dependent graphs…