1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-12 23:50:13 +02:00
Files
go-profiler-notes/mutex.md

18 lines
878 B
Markdown
Raw Permalink Normal View History

2021-02-08 15:11:08 +01:00
🚧 This note is still work in progress, please come back later! 🚧
# Mutex Profiling in Go
## History
2021-02-09 14:03:12 +01:00
Mutex profiling was [implemented](https://go-review.googlesource.com/c/go/+/29650/) by [Peter J. Weinberger](https://en.wikipedia.org/wiki/Peter_J._Weinberger) and first appeared in the [go1.8](https://golang.org/doc/go1.8#mutex_prof) release (2017-02-16).
2021-02-08 15:11:08 +01:00
## Links
- https://rakyll.org/mutexprofile/
2021-02-09 13:16:11 +01:00
- https://talks.golang.org/2017/state-of-go.slide#23
## Disclaimers
2021-02-19 15:26:28 +01:00
I'm [felixge](https://github.com/felixge) and work at [Datadog](https://www.datadoghq.com/) on [Continuous Profiling](https://www.datadoghq.com/product/code-profiling/) for Go. You should check it out. We're also [hiring](https://www.datadoghq.com/jobs-engineering/#all&all_locations) : ).
2021-02-09 13:16:11 +01:00
The information on this page is believed to be correct, but no warranty is provided. Feedback is welcome!