| 24 | ) |
| 25 | |
| 26 | type source struct { |
| 27 | Sources []string |
| 28 | ExecName string |
| 29 | BuildID string |
| 30 | Base []string |
| 31 | DiffBase bool |
| 32 | Normalize bool |
| 33 | |
| 34 | Seconds int |
| 35 | Timeout int |
| 36 | Symbolize string |
| 37 | HTTPHostport string |
| 38 | HTTPDisableBrowser bool |
| 39 | Comment string |
| 40 | AllFrames bool |
| 41 | } |
| 42 | |
| 43 | // parseFlags parses the command lines through the specified flags package |
| 44 | // and returns the source of the profile and optionally the command |
no outgoing calls