diff mbox series

[v4,19/46] tools/lib/traceevent: Man page for tep_list_events()

Message ID 20190308133654.21264-20-tstoyanov@vmware.com (mailing list archive)
State Superseded
Headers show
Series Libtraceevent MAN pages | expand

Commit Message

Tzvetomir Stoyanov March 8, 2019, 1:36 p.m. UTC
Create man page for tep_list_events() as part of the libtraceevent APIs.

Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com>
---
 .../libtraceevent-event_list.txt              | 94 +++++++++++++++++++
 1 file changed, 94 insertions(+)
 create mode 100644 tools/lib/traceevent/Documentation/libtraceevent-event_list.txt

Comments

Steven Rostedt March 13, 2019, 5:29 p.m. UTC | #1
On Fri,  8 Mar 2019 15:36:27 +0200
Tzvetomir Stoyanov <tstoyanov@vmware.com> wrote:

> Create man page for tep_list_events() as part of the libtraceevent APIs.
> 

We should probably include tep_list_events_copy() in this man page.
Where one is not to be freed, and the other is.

-- Steve

> Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com>
> ---
>  .../libtraceevent-event_list.txt              | 94 +++++++++++++++++++
>  1 file changed, 94 insertions(+)
>  create mode 100644 tools/lib/traceevent/Documentation/libtraceevent-event_list.txt
>
Tzvetomir Stoyanov March 14, 2019, 1:05 p.m. UTC | #2
On Wed, Mar 13, 2019 at 7:29 PM Steven Rostedt <rostedt@goodmis.org> wrote:
>
> On Fri,  8 Mar 2019 15:36:27 +0200
> Tzvetomir Stoyanov <tstoyanov@vmware.com> wrote:
>
> > Create man page for tep_list_events() as part of the libtraceevent APIs.
> >
>
> We should probably include tep_list_events_copy() in this man page.
> Where one is not to be freed, and the other is.

I'll update the man page once we introduce tep_list_events_copy() to
tools/lib/traceevent, currently this new API is part of trace-cmd only.

>
> -- Steve
>
> > Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com>
> > ---
> >  .../libtraceevent-event_list.txt              | 94 +++++++++++++++++++
> >  1 file changed, 94 insertions(+)
> >  create mode 100644 tools/lib/traceevent/Documentation/libtraceevent-event_list.txt
> >
Steven Rostedt March 14, 2019, 1:39 p.m. UTC | #3
On Thu, 14 Mar 2019 13:05:15 +0000
Tzvetomir Stoyanov <tstoyanov@vmware.com> wrote:

> > We should probably include tep_list_events_copy() in this man page.
> > Where one is not to be freed, and the other is.  
> 
> I'll update the man page once we introduce tep_list_events_copy() to
> tools/lib/traceevent, currently this new API is part of trace-cmd only.

Ah, I guess I should go and sort out all the patches that need to go
upstream too ;-)

I'll start by diffing the two trees and then searching for the patches
that make the updates.

-- Steve
diff mbox series

Patch

diff --git a/tools/lib/traceevent/Documentation/libtraceevent-event_list.txt b/tools/lib/traceevent/Documentation/libtraceevent-event_list.txt
new file mode 100644
index 000000000000..97b2e0922900
--- /dev/null
+++ b/tools/lib/traceevent/Documentation/libtraceevent-event_list.txt
@@ -0,0 +1,94 @@ 
+libtraceevent(3)
+================
+
+NAME
+----
+tep_list_events - Get list of events, sorted by given criteria.
+
+SYNOPSIS
+--------
+[verse]
+--
+*#include <event-parse.h>*
+
+enum *tep_event_sort_type* {
+	_TEP_EVENT_SORT_ID_,
+	_TEP_EVENT_SORT_NAME_,
+	_TEP_EVENT_SORT_SYSTEM_,
+};
+
+struct tep_event pass:[*]pass:[*]*tep_list_events*(struct tep_handle pass:[*]_tep_, enum tep_event_sort_type _sort_type_);
+--
+
+DESCRIPTION
+-----------
+The _tep_list_events()_ function returns an array of pointers to the events,
+sorted by the _sort_type_ criteria. The last element of the array is NULL.
+The returned memory must not be freed, it is managed by the library.
+The _tep_ argument is trace event parser context. The _sort_type_ argument is
+the required sort criteria:
+[verse]
+--
+	_TEP_EVENT_SORT_ID_	- sort by the event ID.
+	_TEP_EVENT_SORT_NAME_	- sort by the event (name, system, id) triplet.
+	_TEP_EVENT_SORT_SYSTEM_	- sort by the event (system, name, id) triplet.
+--
+
+RETURN VALUE
+------------
+The _tep_list_events()_ function returns an array of pointers to events.
+In case of an error, NULL is returned.
+
+EXAMPLE
+-------
+[source,c]
+--
+#include <event-parse.h>
+...
+struct tep_handle *tep = tep_alloc();
+...
+int i=0;
+struct tep_event_format **events = tep_list_events(tep, TEP_EVENT_SORT_ID);
+if (events == NULL) {
+	/* Failed to get the events, sorted by ID */
+} else {
+	while(events[i]) {
+		/* walk through the list of the events, sorted by the ID */
+		i++;
+	}
+}
+...
+--
+
+FILES
+-----
+[verse]
+--
+*event-parse.h*
+	Header file to include in order to have access to the library APIs.
+*-ltraceevent*
+	Linker switch to add when building a program that uses the library.
+--
+
+SEE ALSO
+--------
+_libtraceevent(3)_, _trace-cmd(1)_
+
+AUTHOR
+------
+[verse]
+--
+*Steven Rostedt* <rostedt@goodmis.org>, author of *libtraceevent*.
+*Tzvetomir Stoyanov* <tz.stoyanov@gmail.com>, author of this man page.
+--
+REPORTING BUGS
+--------------
+Report bugs to  <linux-trace-devel@vger.kernel.org>
+
+LICENSE
+-------
+libtraceevent is Free Software licensed under the GNU LGPL 2.1
+
+RESOURCES
+---------
+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git