Bucket is a stack trace signature and the list of goroutines that fits this signature.
| 100 | // Bucket is a stack trace signature and the list of goroutines that fits this |
| 101 | // signature. |
| 102 | type Bucket struct { |
| 103 | // Signature is the generalized signature for this bucket. |
| 104 | Signature |
| 105 | // IDs is the ID of each Goroutine with this Signature. |
| 106 | IDs []int |
| 107 | // First is true if this Bucket contains the first goroutine, e.g. the one |
| 108 | // Signature that likely generated the panic() call, if any. |
| 109 | First bool |
| 110 | |
| 111 | // Disallow initialization with unnamed parameters. |
| 112 | _ struct{} |
| 113 | } |
nothing calls this directly
no outgoing calls
no test coverage detected