linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] libtracefs: fix compiling with musl
@ 2022-07-11 18:14 Steven Rostedt
  0 siblings, 0 replies; only message in thread
From: Steven Rostedt @ 2022-07-11 18:14 UTC (permalink / raw)
  To: Linux Trace Devel; +Cc: Nick Hainke

From: Nick Hainke <vincent@systemli.org>

The library does not build with musl due to a missing pthread.h include.
This commit adds the missing include.

Fixes errors in the form of:

  In file included from tracefs-utils.c:21:
  ...cortex-a53_musl/libtracefs-1.4.1/include/tracefs-local.h:30:9:
    error: unknown type name 'pthread_mutex_t'
     30 |         pthread_mutex_t                 lock;
        |         ^~~~~~~~~~~~~~~
  .../cortex-a53_musl/libtracefs-1.4.1/include/tracefs-local.h:41:8:
    error: unknown type name 'pthread_mutex_t'
     41 | extern pthread_mutex_t toplevel_lock;
        |        ^~~~~~~~~~~~~~~
  ...cortex-a53_musl/libtracefs-1.4.1/include/tracefs-local.h:43:15:
    error: unknown type name 'pthread_mutex_t'
     43 | static inline pthread_mutex_t *trace_get_lock(struct ...
        |               ^~~~~~~~~~~~~~~

Signed-off-by: Nick Hainke <vincent@systemli.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 Taken from a github pull request.
  https://github.com/rostedt/libtracefs/commit/01bb4cd9d4e408bf2ec45623760ec5b90a3253c0

 include/tracefs-local.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/tracefs-local.h b/include/tracefs-local.h
index 1652a27..2267007 100644
--- a/include/tracefs-local.h
+++ b/include/tracefs-local.h
@@ -6,6 +6,8 @@
 #ifndef _TRACE_FS_LOCAL_H
 #define _TRACE_FS_LOCAL_H
 
+#include <pthread.h>
+
 #define __hidden __attribute__((visibility ("hidden")))
 #define __internal __attribute__((visibility ("internal")))
 #define __weak __attribute__((weak))

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-11 18:15 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-11 18:14 [PATCH] libtracefs: fix compiling with musl Steven Rostedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).