Ubuntu Pastebin

Paste from fwereade at Fri, 6 May 2016 14:56:11 +0000

Download as text
1
2
3
4
5
6
7
go func() {
    select {
    case <-abort:
    case <-clock.After(timeout):
        worker.Kill()
    }
}()
Download as text