| 42 | } |
| 43 | |
| 44 | type llvmSymbolizerJob struct { |
| 45 | cmd *exec.Cmd |
| 46 | in io.WriteCloser |
| 47 | out *bufio.Reader |
| 48 | // llvm-symbolizer requires the symbol type, CODE or DATA, for symbolization. |
| 49 | symType string |
| 50 | } |
| 51 | |
| 52 | func (a *llvmSymbolizerJob) write(s string) error { |
| 53 | _, err := fmt.Fprintln(a.in, a.symType, s) |
nothing calls this directly
no outgoing calls
no test coverage detected