aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (Google) <rostedt@goodmis.org>2022-09-22 11:25:06 -0400
committerSteven Rostedt (Google) <rostedt@goodmis.org>2022-09-22 17:53:20 -0400
commitdeefe29a3bc83098053e8622234f67a0731a0f60 (patch)
tree5fc3afaf6118f0a5a5523fca4fec83dedd1ab776
parentcf6dd2d16440f3dedfc364c83fca0bd801f34dc9 (diff)
downloadlibtraceevent-deefe29a3bc83098053e8622234f67a0731a0f60.tar.gz
libtraceevent: Include meta data functions in libtraceevent man pages
Add the functions to parse the metadata printk_formats, kallsyms and saved_cmdlines to the generic libtraceevent man page. Link: https://lore.kernel.org/linux-trace-devel/20220922152510.3335601-6-rostedt@goodmis.org Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-rw-r--r--Documentation/libtraceevent.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/libtraceevent.txt b/Documentation/libtraceevent.txt
index 06abaf7..77b5036 100644
--- a/Documentation/libtraceevent.txt
+++ b/Documentation/libtraceevent.txt
@@ -46,6 +46,11 @@ Trace printk parsing:
void *tep_set_test_filters*(struct tep_handle pass:[*]tep, int test_filters);
void *tep_plugin_print_options*(struct trace_seq pass:[*]s);
+Meta data parsing:
+ int *tep_parse_saved_cmdlines*(struct tep_handle pass:[*]_tep_, const char pass:[*]_buf_);
+ int *tep_parse_printk_formats*(struct tep_handle pass:[*]_tep_, const char pass:[*]_buf_);
+ int *tep_parse_kallsyms*(struct tep_handle pass:[*]_tep_, const char pass:[*]_buf_);
+
Plugins management:
struct tep_plugin_list pass:[*]*tep_load_plugins*(struct tep_handle pass:[*]_tep_);
void *tep_unload_plugins*(struct tep_plugin_list pass:[*]_plugin_list_, struct tep_handle pass:[*]_tep_);