aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (Google) <rostedt@goodmis.org>2022-09-22 11:25:05 -0400
committerSteven Rostedt (Google) <rostedt@goodmis.org>2022-09-22 17:53:20 -0400
commitcf6dd2d16440f3dedfc364c83fca0bd801f34dc9 (patch)
tree41b8dbcd17d6cf96917055dd132c82027d5f27db
parent5bfc11e8934cbd3a1fdc6987651e28cd0812ca51 (diff)
downloadlibtraceevent-cf6dd2d16440f3dedfc364c83fca0bd801f34dc9.tar.gz
libtraceevent: Add tep_get_function_count() to libtraceevent man page
Add tep_get_function_count() to the generic libtraceevent man page. Link: https://lore.kernel.org/linux-trace-devel/20220922152510.3335601-5-rostedt@goodmis.org Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-rw-r--r--Documentation/libtraceevent.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/libtraceevent.txt b/Documentation/libtraceevent.txt
index 4fe8939..06abaf7 100644
--- a/Documentation/libtraceevent.txt
+++ b/Documentation/libtraceevent.txt
@@ -38,6 +38,7 @@ Register / unregister APIs:
int *tep_register_print_string*(struct tep_handle pass:[*]_tep_, const char pass:[*]_fmt_, unsigned long long _addr_);
int *tep_register_print_function*(struct tep_handle pass:[*]_tep_, tep_func_handler _func_, enum tep_func_arg_type _ret_type_, char pass:[*]_name_, _..._);
int *tep_unregister_print_function*(struct tep_handle pass:[*]_tep_, tep_func_handler _func_, char pass:[*]_name_);
+ int *tep_get_function_count*(struct tep_handle *_tep_);
Trace printk parsing:
void *tep_print_printk*(struct tep_handle pass:[*]tep);