github.com/huandu/go@v0.0.0-20151114150818-04e615e41150/src/runtime/hack.go (about)

     1  package runtime
     2  
     3  // GetGoroutineId returns current goroutine id.
     4  func GetGoroutineId() int64 {
     5          gp := getg()
     6          return gp.goid
     7  }
     8