summaryrefslogtreecommitdiff
path: root/toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
commit014194de605990c6bdce52e03ee3dc1df13c45e8 (patch)
treec65577c3a956dad1d4d1b05e6d62c2f331218e80 /toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch
parent02df774b52e4a0c0b9a8395e55263b80eb8f5f93 (diff)
downloadmtk-20170518-014194de605990c6bdce52e03ee3dc1df13c45e8.zip
mtk-20170518-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.gz
mtk-20170518-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.bz2
uclibc: remove version 0.9.33
Latest uClibc-ng is now the only supported option Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47357
Diffstat (limited to 'toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch')
-rw-r--r--toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch b/toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch
deleted file mode 100644
index ae36018..0000000
--- a/toolchain/uClibc/patches-0.9.33.2/180-pthread_cleanup_fix.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- a/libpthread/nptl/cleanup_defer_compat.c
-+++ b/libpthread/nptl/cleanup_defer_compat.c
-@@ -22,7 +22,7 @@
-
- void
- attribute_protected
--_pthread_cleanup_push_defer (
-+__pthread_cleanup_push_defer (
- struct _pthread_cleanup_buffer *buffer,
- void (*routine) (void *),
- void *arg)
-@@ -57,12 +57,12 @@ _pthread_cleanup_push_defer (
-
- THREAD_SETMEM (self, cleanup, buffer);
- }
--strong_alias (_pthread_cleanup_push_defer, __pthread_cleanup_push_defer)
-+strong_alias (__pthread_cleanup_push_defer, _pthread_cleanup_push_defer)
-
-
- void
- attribute_protected
--_pthread_cleanup_pop_restore (
-+__pthread_cleanup_pop_restore (
- struct _pthread_cleanup_buffer *buffer,
- int execute)
- {
-@@ -97,4 +97,4 @@ _pthread_cleanup_pop_restore (
- if (execute)
- buffer->__routine (buffer->__arg);
- }
--strong_alias (_pthread_cleanup_pop_restore, __pthread_cleanup_pop_restore)
-+strong_alias (__pthread_cleanup_pop_restore, _pthread_cleanup_pop_restore)
---- a/libpthread/nptl/init.c
-+++ b/libpthread/nptl/init.c
-@@ -112,8 +112,8 @@ static const struct pthread_functions pt
- .ptr___pthread_key_create = __pthread_key_create_internal,
- .ptr___pthread_getspecific = __pthread_getspecific_internal,
- .ptr___pthread_setspecific = __pthread_setspecific_internal,
-- .ptr__pthread_cleanup_push_defer = _pthread_cleanup_push_defer,
-- .ptr__pthread_cleanup_pop_restore = _pthread_cleanup_pop_restore,
-+ .ptr__pthread_cleanup_push_defer = __pthread_cleanup_push_defer,
-+ .ptr__pthread_cleanup_pop_restore = __pthread_cleanup_pop_restore,
- .ptr_nthreads = &__nptl_nthreads,
- .ptr___pthread_unwind = &__pthread_unwind,
- .ptr__nptl_deallocate_tsd = __nptl_deallocate_tsd,