taken from https://github.com/VividCortex/trace
()
| 117 | |
| 118 | // taken from https://github.com/VividCortex/trace |
| 119 | func goroutineNum() int { |
| 120 | b := make([]byte, 20) |
| 121 | runtime.Stack(b, false) |
| 122 | var num int |
| 123 | |
| 124 | _, _ = fmt.Sscanf(string(b), "goroutine %d ", &num) |
| 125 | return num |
| 126 | } |
| 127 | |
| 128 | // taken from https://github.com/VividCortex/trace |
| 129 | func getPosition() (fn, dir, file string, line int) { |