summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/glibc_thread_name.c
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/glibc_thread_name.c')
-rw-r--r--waftools/fragments/glibc_thread_name.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/waftools/fragments/glibc_thread_name.c b/waftools/fragments/glibc_thread_name.c
deleted file mode 100644
index b63889dc80..0000000000
--- a/waftools/fragments/glibc_thread_name.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#define _GNU_SOURCE
-#include <pthread.h>
-int main(int argc, char **argv) {
- pthread_setname_np(pthread_self(), "ducks");
- return 0;
-}