aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/lockdep/tests/unlock_balance.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tools/lib/lockdep/tests/unlock_balance.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/lib/lockdep/tests/unlock_balance.c b/tools/lib/lockdep/tests/unlock_balance.c
deleted file mode 100644
index dba25064b50a..000000000000
--- a/tools/lib/lockdep/tests/unlock_balance.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include <liblockdep/mutex.h>
-
-void main(void)
-{
- pthread_mutex_t a;
-
- pthread_mutex_init(&a, NULL);
-
- pthread_mutex_lock(&a);
- pthread_mutex_unlock(&a);
- pthread_mutex_unlock(&a);
-
- pthread_mutex_destroy(&a);
-}