From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Kiszka Subject: [PATCH v7 0/3] Kernel-Shark and libtraceevent plugins Date: Sat, 12 Mar 2022 13:59:59 +0100 Message-ID: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain List-Id: Discussions about the Xenomai project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xenomai@xenomai.org Changes in v7: - reworked installation - fixed build of kernelshark plugin (missing dep) - dropped applied first patch Jan CC: Hongzhan Chen Hongzhan Chen (3): build: add options to build plugins of kernelshark and libtraceevent KernelShark: Add xenomai_cobalt_switch_events plugin for KernelShark libtraceevent: Add xenomai_schedparams plugin for libtraceevent Makefile.am | 4 + configure.ac | 36 ++++ tracing/Makefile.am | 13 ++ tracing/README | 84 +++++++++ tracing/kernelshark/CobaltSwitchEvents.cpp | 156 ++++++++++++++++ tracing/kernelshark/Makefile.am | 23 +++ .../xenomai_cobalt_switch_events.c | 174 ++++++++++++++++++ .../xenomai_cobalt_switch_events.h | 58 ++++++ tracing/libtraceevent/Makefile.am | 19 ++ .../plugin_xenomai_schedparams.c | 158 ++++++++++++++++ 10 files changed, 725 insertions(+) create mode 100644 tracing/Makefile.am create mode 100644 tracing/README create mode 100644 tracing/kernelshark/CobaltSwitchEvents.cpp create mode 100644 tracing/kernelshark/Makefile.am create mode 100644 tracing/kernelshark/xenomai_cobalt_switch_events.c create mode 100644 tracing/kernelshark/xenomai_cobalt_switch_events.h create mode 100644 tracing/libtraceevent/Makefile.am create mode 100644 tracing/libtraceevent/plugin_xenomai_schedparams.c -- 2.34.1