^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) libtraceevent(3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) ================
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) NAME
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) ----
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) libtraceevent - Linux kernel trace event library
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) SYNOPSIS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) --------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) [verse]
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) *#include <event-parse.h>*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) Management of tep handler data structure and access of its members:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) struct tep_handle pass:[*]*tep_alloc*(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) void *tep_free*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) void *tep_ref*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) void *tep_unref*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) int *tep_get_ref*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) void *tep_set_flag*(struct tep_handle pass:[*]_tep_, enum tep_flag _flag_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) void *tep_clear_flag*(struct tep_handle pass:[*]_tep_, enum tep_flag _flag_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) bool *tep_test_flag*(struct tep_handle pass:[*]_tep_, enum tep_flag _flags_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) int *tep_get_cpus*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) void *tep_set_cpus*(struct tep_handle pass:[*]_tep_, int _cpus_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) int *tep_get_long_size*(strucqt tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) void *tep_set_long_size*(struct tep_handle pass:[*]_tep_, int _long_size_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) int *tep_get_page_size*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) void *tep_set_page_size*(struct tep_handle pass:[*]_tep_, int _page_size_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) int *tep_get_header_page_size*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) int *tep_get_header_timestamp_size*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) bool *tep_is_old_format*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) int *tep_strerror*(struct tep_handle pass:[*]_tep_, enum tep_errno _errnum_, char pass:[*]_buf_, size_t _buflen_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) Register / unregister APIs:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) int *tep_register_function*(struct tep_handle pass:[*]_tep_, char pass:[*]_name_, unsigned long long _addr_, char pass:[*]_mod_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) int *tep_register_event_handler*(struct tep_handle pass:[*]_tep_, int _id_, const char pass:[*]_sys_name_, const char pass:[*]_event_name_, tep_event_handler_func _func_, void pass:[*]_context_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) int *tep_unregister_event_handler*(struct tep_handle pass:[*]tep, int id, const char pass:[*]sys_name, const char pass:[*]event_name, tep_event_handler_func func, void pass:[*]_context_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) int *tep_register_print_string*(struct tep_handle pass:[*]_tep_, const char pass:[*]_fmt_, unsigned long long _addr_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) int *tep_register_print_function*(struct tep_handle pass:[*]_tep_, tep_func_handler _func_, enum tep_func_arg_type _ret_type_, char pass:[*]_name_, _..._);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) int *tep_unregister_print_function*(struct tep_handle pass:[*]_tep_, tep_func_handler _func_, char pass:[*]_name_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) Plugins management:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) struct tep_plugin_list pass:[*]*tep_load_plugins*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) void *tep_unload_plugins*(struct tep_plugin_list pass:[*]_plugin_list_, struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) char pass:[*]pass:[*]*tep_plugin_list_options*(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) void *tep_plugin_free_options_list*(char pass:[*]pass:[*]_list_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) int *tep_plugin_add_options*(const char pass:[*]_name_, struct tep_plugin_option pass:[*]_options_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) void *tep_plugin_remove_options*(struct tep_plugin_option pass:[*]_options_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) void *tep_print_plugins*(struct trace_seq pass:[*]_s_, const char pass:[*]_prefix_, const char pass:[*]_suffix_, const struct tep_plugin_list pass:[*]_list_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51) Event related APIs:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52) struct tep_event pass:[*]*tep_get_event*(struct tep_handle pass:[*]_tep_, int _index_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 53) struct tep_event pass:[*]*tep_get_first_event*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 54) int *tep_get_events_count*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 55) struct tep_event pass:[*]pass:[*]*tep_list_events*(struct tep_handle pass:[*]_tep_, enum tep_event_sort_type _sort_type_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 56) struct tep_event pass:[*]pass:[*]*tep_list_events_copy*(struct tep_handle pass:[*]_tep_, enum tep_event_sort_type _sort_type_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 57) void *tep_print_event*(struct tep_handle pass:[*]_tep_, struct trace_seq pass:[*]_s_, struct tep_record pass:[*]_record_, const char pass:[*]_fmt_, _..._);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 58)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 59) Event finding:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 60) struct tep_event pass:[*]*tep_find_event*(struct tep_handle pass:[*]_tep_, int _id_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 61) struct tep_event pass:[*]*tep_find_event_by_name*(struct tep_handle pass:[*]_tep_, const char pass:[*]_sys_, const char pass:[*]_name_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 62) struct tep_event pass:[*]*tep_find_event_by_record*(struct tep_handle pass:[*]_tep_, struct tep_record pass:[*]_record_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 63)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 64) Parsing of event files:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 65) int *tep_parse_header_page*(struct tep_handle pass:[*]_tep_, char pass:[*]_buf_, unsigned long _size_, int _long_size_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 66) enum tep_errno *tep_parse_event*(struct tep_handle pass:[*]_tep_, const char pass:[*]_buf_, unsigned long _size_, const char pass:[*]_sys_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 67) enum tep_errno *tep_parse_format*(struct tep_handle pass:[*]_tep_, struct tep_event pass:[*]pass:[*]_eventp_, const char pass:[*]_buf_, unsigned long _size_, const char pass:[*]_sys_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 68)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 69) APIs related to fields from event's format files:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 70) struct tep_format_field pass:[*]pass:[*]*tep_event_common_fields*(struct tep_event pass:[*]_event_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 71) struct tep_format_field pass:[*]pass:[*]*tep_event_fields*(struct tep_event pass:[*]_event_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 72) void pass:[*]*tep_get_field_raw*(struct trace_seq pass:[*]_s_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, int pass:[*]_len_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 73) int *tep_get_field_val*(struct trace_seq pass:[*]_s_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, unsigned long long pass:[*]_val_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 74) int *tep_get_common_field_val*(struct trace_seq pass:[*]_s_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, unsigned long long pass:[*]_val_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 75) int *tep_get_any_field_val*(struct trace_seq pass:[*]_s_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, unsigned long long pass:[*]_val_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 76) int *tep_read_number_field*(struct tep_format_field pass:[*]_field_, const void pass:[*]_data_, unsigned long long pass:[*]_value_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 77)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 78) Event fields printing:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 79) void *tep_print_field*(struct trace_seq pass:[*]_s_, void pass:[*]_data_, struct tep_format_field pass:[*]_field_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 80) void *tep_print_fields*(struct trace_seq pass:[*]_s_, void pass:[*]_data_, int _size_, struct tep_event pass:[*]_event_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 81) int *tep_print_num_field*(struct trace_seq pass:[*]_s_, const char pass:[*]_fmt_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 82) int *tep_print_func_field*(struct trace_seq pass:[*]_s_, const char pass:[*]_fmt_, struct tep_event pass:[*]_event_, const char pass:[*]_name_, struct tep_record pass:[*]_record_, int _err_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 83)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 84) Event fields finding:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 85) struct tep_format_field pass:[*]*tep_find_common_field*(struct tep_event pass:[*]_event_, const char pass:[*]_name_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 86) struct tep_format_field pass:[*]*tep_find_field*(struct tep_event_ormat pass:[*]_event_, const char pass:[*]_name_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 87) struct tep_format_field pass:[*]*tep_find_any_field*(struct tep_event pass:[*]_event_, const char pass:[*]_name_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 88)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 89) Functions resolver:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 90) int *tep_set_function_resolver*(struct tep_handle pass:[*]_tep_, tep_func_resolver_t pass:[*]_func_, void pass:[*]_priv_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 91) void *tep_reset_function_resolver*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 92) const char pass:[*]*tep_find_function*(struct tep_handle pass:[*]_tep_, unsigned long long _addr_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 93) unsigned long long *tep_find_function_address*(struct tep_handle pass:[*]_tep_, unsigned long long _addr_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 94)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 95) Filter management:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 96) struct tep_event_filter pass:[*]*tep_filter_alloc*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 97) enum tep_errno *tep_filter_add_filter_str*(struct tep_event_filter pass:[*]_filter_, const char pass:[*]_filter_str_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 98) enum tep_errno *tep_filter_match*(struct tep_event_filter pass:[*]_filter_, struct tep_record pass:[*]_record_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 99) int *tep_filter_strerror*(struct tep_event_filter pass:[*]_filter_, enum tep_errno _err_, char pass:[*]buf, size_t _buflen_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) int *tep_event_filtered*(struct tep_event_filter pass:[*]_filter_, int _event_id_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) void *tep_filter_reset*(struct tep_event_filter pass:[*]_filter_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) void *tep_filter_free*(struct tep_event_filter pass:[*]_filter_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) char pass:[*]*tep_filter_make_string*(struct tep_event_filter pass:[*]_filter_, int _event_id_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104) int *tep_filter_remove_event*(struct tep_event_filter pass:[*]_filter_, int _event_id_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) int *tep_filter_copy*(struct tep_event_filter pass:[*]_dest_, struct tep_event_filter pass:[*]_source_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) int *tep_filter_compare*(struct tep_event_filter pass:[*]_filter1_, struct tep_event_filter pass:[*]_filter2_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) Parsing various data from the records:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) int *tep_data_type*(struct tep_handle pass:[*]_tep_, struct tep_record pass:[*]_rec_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) int *tep_data_pid*(struct tep_handle pass:[*]_tep_, struct tep_record pass:[*]_rec_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) int *tep_data_preempt_count*(struct tep_handle pass:[*]_tep_, struct tep_record pass:[*]_rec_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) int *tep_data_flags*(struct tep_handle pass:[*]_tep_, struct tep_record pass:[*]_rec_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) Command and task related APIs:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) const char pass:[*]*tep_data_comm_from_pid*(struct tep_handle pass:[*]_tep_, int _pid_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) struct cmdline pass:[*]*tep_data_pid_from_comm*(struct tep_handle pass:[*]_tep_, const char pass:[*]_comm_, struct cmdline pass:[*]_next_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) int *tep_register_comm*(struct tep_handle pass:[*]_tep_, const char pass:[*]_comm_, int _pid_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) int *tep_override_comm*(struct tep_handle pass:[*]_tep_, const char pass:[*]_comm_, int _pid_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) bool *tep_is_pid_registered*(struct tep_handle pass:[*]_tep_, int _pid_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) int *tep_cmdline_pid*(struct tep_handle pass:[*]_tep_, struct cmdline pass:[*]_cmdline_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) Endian related APIs:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) int *tep_is_bigendian*(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) unsigned long long *tep_read_number*(struct tep_handle pass:[*]_tep_, const void pass:[*]_ptr_, int _size_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) bool *tep_is_file_bigendian*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) void *tep_set_file_bigendian*(struct tep_handle pass:[*]_tep_, enum tep_endian _endian_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) bool *tep_is_local_bigendian*(struct tep_handle pass:[*]_tep_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) void *tep_set_local_bigendian*(struct tep_handle pass:[*]_tep_, enum tep_endian _endian_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130) Trace sequences:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131) *#include <trace-seq.h>*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132) void *trace_seq_init*(struct trace_seq pass:[*]_s_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) void *trace_seq_reset*(struct trace_seq pass:[*]_s_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134) void *trace_seq_destroy*(struct trace_seq pass:[*]_s_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135) int *trace_seq_printf*(struct trace_seq pass:[*]_s_, const char pass:[*]_fmt_, ...);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136) int *trace_seq_vprintf*(struct trace_seq pass:[*]_s_, const char pass:[*]_fmt_, va_list _args_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) int *trace_seq_puts*(struct trace_seq pass:[*]_s_, const char pass:[*]_str_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138) int *trace_seq_putc*(struct trace_seq pass:[*]_s_, unsigned char _c_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139) void *trace_seq_terminate*(struct trace_seq pass:[*]_s_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140) int *trace_seq_do_fprintf*(struct trace_seq pass:[*]_s_, FILE pass:[*]_fp_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) int *trace_seq_do_printf*(struct trace_seq pass:[*]_s_);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) DESCRIPTION
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) -----------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) The libtraceevent(3) library provides APIs to access kernel tracepoint events,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) located in the tracefs file system under the events directory.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) ENVIRONMENT
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150) -----------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151) [verse]
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153) TRACEEVENT_PLUGIN_DIR
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) Additional plugin directory. All shared object files, located in this directory will be loaded as traceevent plugins.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157) FILES
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158) -----
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159) [verse]
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) *event-parse.h*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162) Header file to include in order to have access to the library APIs.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163) *trace-seq.h*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164) Header file to include in order to have access to trace sequences related APIs.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165) Trace sequences are used to allow a function to call several other functions
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) to create a string of data to use.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) *-ltraceevent*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168) Linker switch to add when building a program that uses the library.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171) SEE ALSO
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) --------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) _trace-cmd(1)_
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175) AUTHOR
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176) ------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177) [verse]
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) *Steven Rostedt* <rostedt@goodmis.org>, author of *libtraceevent*.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) *Tzvetomir Stoyanov* <tz.stoyanov@gmail.com>, author of this man page.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) --
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) REPORTING BUGS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) --------------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) Report bugs to <linux-trace-devel@vger.kernel.org>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) LICENSE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) -------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) libtraceevent is Free Software licensed under the GNU LGPL 2.1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190) RESOURCES
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) ---------
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git