aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Rostedt (Google) <rostedt@goodmis.org>2022-12-08 18:21:46 -0500
committerSteven Rostedt (Google) <rostedt@goodmis.org>2022-12-08 19:41:24 -0500
commit3ca638443c1e86dd1a07f9d40cd4fd40f4a6da63 (patch)
tree2fd4170cdcbf74f6122a676d5d314afbd784b60c
parent5f2aa8497c5b7f9aa7ef0a35b85cc6528d6c2afc (diff)
downloadlibtraceevent-3ca638443c1e86dd1a07f9d40cd4fd40f4a6da63.tar.gz
libtraceevent: Add tep_find_function_info() to main libtraceevent man page
The prototype of tep_find_function_info() was missing from the main libtraceevent man page. Add it. Link: https://lore.kernel.org/linux-trace-devel/20221208182146.57a87503@gandalf.local.home Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-rw-r--r--Documentation/libtraceevent.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/libtraceevent.txt b/Documentation/libtraceevent.txt
index 488e689..442a394 100644
--- a/Documentation/libtraceevent.txt
+++ b/Documentation/libtraceevent.txt
@@ -116,6 +116,8 @@ Functions resolver:
void *tep_reset_function_resolver*(struct tep_handle pass:[*]_tep_);
const char pass:[*]*tep_find_function*(struct tep_handle pass:[*]_tep_, unsigned long long _addr_);
unsigned long long *tep_find_function_address*(struct tep_handle pass:[*]_tep_, unsigned long long _addr_);
+ int *tep_find_function_info*(struct tep_handle pass:[*]_tep_, unsigned long long _addr_, const char pass:[**]_name_,
+ unsigned long long pass:[*]_start_, unsigned long pass:[*]_size_);
Filter management:
struct tep_event_filter pass:[*]*tep_filter_alloc*(struct tep_handle pass:[*]_tep_);