WriteMutexProfile writes a goroutine blocking profile to the given file.
(file string)
| 161 | |
| 162 | // WriteMutexProfile writes a goroutine blocking profile to the given file. |
| 163 | func (*HandlerT) WriteMutexProfile(file string) error { |
| 164 | return writeProfile("mutex", file) |
| 165 | } |
| 166 | |
| 167 | // WriteMemProfile writes an allocation profile to the given file. |
| 168 | // Note that the profiling rate cannot be set through the API, |
nothing calls this directly
no test coverage detected