mirror of
https://github.com/golang/go
synced 2024-11-02 11:50:30 +00:00
removed the uint64 cast.
This commit is contained in:
parent
2521650656
commit
445de8eaf3
1 changed files with 1 additions and 1 deletions
|
@ -1925,7 +1925,7 @@ func oneNewExtraM() {
|
|||
// while calling from C thread to Go.
|
||||
traceGoCreate(gp, 0) // no start pc
|
||||
gp.traceseq++
|
||||
traceEvent(traceEvGoInSyscall, -1, uint64(gp.goid))
|
||||
traceEvent(traceEvGoInSyscall, -1, gp.goid)
|
||||
}
|
||||
// put on allg for garbage collector
|
||||
allgadd(gp)
|
||||
|
|
Loading…
Reference in a new issue