()
| 19 | } |
| 20 | |
| 21 | func (this *xtimer) reset() { |
| 22 | this.seqID = 0 |
| 23 | this.runTick = 0 |
| 24 | this.args = this.args[:0] |
| 25 | this.handler = nil |
| 26 | this.next = nil |
| 27 | this.running = false |
| 28 | } |
| 29 | |
| 30 | func (this *xtimer) get_timer_id() uint64 { |
| 31 | seqID := uint64(this.seqID) |