summaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2018-05-25 08:02:43 +0200
committerIngo Molnar <mingo@kernel.org>2018-05-25 08:02:43 +0200
commitbd9c67ad9693bacef086d65c1c6744645d4777e7 (patch)
tree1dcbac332819a79dbaa1a1a836a8485f866568ad /tools/include
parent861410270ab5b13f72fc9afc74fa60f3eb7c2b7e (diff)
parentb50694381cfc22dce3a60a291cdae294a5e5777c (diff)
downloadop-kernel-dev-bd9c67ad9693bacef086d65c1c6744645d4777e7.zip
op-kernel-dev-bd9c67ad9693bacef086d65c1c6744645d4777e7.tar.gz
Merge branch 'linus' into perf/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/linux/spinlock.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/include/linux/spinlock.h b/tools/include/linux/spinlock.h
index b21b586..1738c03 100644
--- a/tools/include/linux/spinlock.h
+++ b/tools/include/linux/spinlock.h
@@ -6,8 +6,9 @@
#include <stdbool.h>
#define spinlock_t pthread_mutex_t
-#define DEFINE_SPINLOCK(x) pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER;
+#define DEFINE_SPINLOCK(x) pthread_mutex_t x = PTHREAD_MUTEX_INITIALIZER
#define __SPIN_LOCK_UNLOCKED(x) (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER
+#define spin_lock_init(x) pthread_mutex_init(x, NULL)
#define spin_lock_irqsave(x, f) (void)f, pthread_mutex_lock(x)
#define spin_unlock_irqrestore(x, f) (void)f, pthread_mutex_unlock(x)
OpenPOWER on IntegriCloud