MCPcopy Create free account
hub / github.com/MariaDB/server / usage

Function usage

extra/resolve_stack_dump.c:69–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67static void clean_up();
68
69static void usage()
70{
71 print_version();
72 printf("MariaDB Corporation, originally created by Sasha Pachev\n");
73 printf("This software comes with ABSOLUTELY NO WARRANTY\n\n");
74 printf("Resolve numeric stack strace dump into symbols.\n\n");
75 printf("Usage: %s [OPTIONS] symbols-file [numeric-dump-file]\n",
76 my_progname);
77 my_print_help(my_long_options);
78 my_print_variables(my_long_options);
79 printf("\n\
80The symbols-file should include the output from: 'nm --numeric-sort mysqld'.\n\
81The numeric-dump-file should contain a numeric stack trace from mysqld.\n\
82If the numeric-dump-file is not given, the stack trace is read from stdin.\n");
83}
84
85
86static void die(const char* fmt, ...)

Callers 2

get_one_optionFunction · 0.70
parse_argsFunction · 0.70

Calls 3

my_print_helpFunction · 0.85
my_print_variablesFunction · 0.85
print_versionFunction · 0.70

Tested by

no test coverage detected