| 211 | static const char *synopsis = "Pickle given trace(s) to standard output."; |
| 212 | |
| 213 | static void |
| 214 | usage(void) |
| 215 | { |
| 216 | std::cout |
| 217 | << "usage: apitrace pickle [OPTIONS] TRACE_FILE...\n" |
| 218 | << synopsis << "\n" |
| 219 | "\n" |
| 220 | " -h, --help show this help message and exit\n" |
| 221 | " -s, --symbolic dump symbolic names\n" |
| 222 | " --calls=CALLSET only dump specified calls\n" |
| 223 | ; |
| 224 | } |
| 225 | |
| 226 | enum { |
| 227 | CALLS_OPT = CHAR_MAX + 1, |