From 445de8eaf3fb54e12795ac31e26650f821c5efbc Mon Sep 17 00:00:00 2001 From: doujiang24 Date: Fri, 12 Aug 2022 10:26:23 +0800 Subject: [PATCH] removed the uint64 cast. --- src/runtime/proc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/proc.go b/src/runtime/proc.go index af1fe0a310..b5ff914a79 100644 --- a/src/runtime/proc.go +++ b/src/runtime/proc.go @@ -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)