removed the uint64 cast.

This commit is contained in:
doujiang24 2022-08-12 10:26:23 +08:00
parent 2521650656
commit 445de8eaf3

View file

@ -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)