diff --git a/content/posts/MonthlyLearning/2406_go_trace.md b/content/posts/MonthlyLearning/2406_go_trace.md index c60d341..840fbec 100644 --- a/content/posts/MonthlyLearning/2406_go_trace.md +++ b/content/posts/MonthlyLearning/2406_go_trace.md @@ -55,7 +55,7 @@ func sum(wg *sync.WaitGroup) { ```sh go tool trace trace.out ``` -![trace-img.jpg](https://github.com/BugsGuru/BugsGuru.github.io/blob/blog/content/posts/MonthlyLearning/img/trace-img.jpg) +![trace.jpg](../img/trace.jpg) 可以看到sum的goroutine在不同的Proc上运行 ## Q2:请描述 runtime/trace 包的使用场景 diff --git a/content/posts/MonthlyLearning/img/trace-img.jpg b/content/posts/MonthlyLearning/img/trace.jpg similarity index 100% rename from content/posts/MonthlyLearning/img/trace-img.jpg rename to content/posts/MonthlyLearning/img/trace.jpg