aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/patches/100-revert_broken_stuff.patch
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2007-12-28 19:51:24 +0000
committerImre Kaloz <kaloz@openwrt.org>2007-12-28 19:51:24 +0000
commit66b3d3dcd8f9449db754be5c69bb1efe82c28bab (patch)
tree7b248a5aff8a6c9ff3ea72aa87e73284147d5ec0 /toolchain/uClibc/patches/100-revert_broken_stuff.patch
parentb131605ed7eca1c0df247462694b7aec207051a4 (diff)
downloadupstream-66b3d3dcd8f9449db754be5c69bb1efe82c28bab.tar.gz
upstream-66b3d3dcd8f9449db754be5c69bb1efe82c28bab.tar.bz2
upstream-66b3d3dcd8f9449db754be5c69bb1efe82c28bab.zip
upgrade to uClibc 0.9.29 - break binary compatibility #1
SVN-Revision: 10010
Diffstat (limited to 'toolchain/uClibc/patches/100-revert_broken_stuff.patch')
-rw-r--r--toolchain/uClibc/patches/100-revert_broken_stuff.patch51
1 files changed, 0 insertions, 51 deletions
diff --git a/toolchain/uClibc/patches/100-revert_broken_stuff.patch b/toolchain/uClibc/patches/100-revert_broken_stuff.patch
deleted file mode 100644
index 9c3a420595..0000000000
--- a/toolchain/uClibc/patches/100-revert_broken_stuff.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -ur uClibc-0.9.28.2/libc/sysdeps/linux/common/bits/uClibc_pthread.h uClibc-0.9.28.1/libc/sysdeps/linux/common/bits/uClibc_pthread.h
---- uClibc-0.9.28.2/libc/sysdeps/linux/common/bits/uClibc_pthread.h 2007-02-22 00:28:41.000000000 +0100
-+++ uClibc-0.9.28.1/libc/sysdeps/linux/common/bits/uClibc_pthread.h 2007-01-26 00:54:19.000000000 +0100
-@@ -24,27 +23,27 @@
- #define _UCLIBC_PTHREAD_H
-
- #ifndef _PTHREAD_H
--# error "Always include <pthread.h> rather than <bits/uClibc_pthread.h>"
-+#error Always include <pthread.h> rather than <bits/uClibc_pthread.h>
- #endif
-
--#if defined _LIBC
--/* Threading functions internal to uClibc. Make these thread functions
-- * weak so that we can elide them from single-threaded processes. */
--extern int weak_function __pthread_mutex_init (pthread_mutex_t *__mutex,
-- __const pthread_mutexattr_t *__mutex_attr);
--extern int weak_function __pthread_mutex_destroy (pthread_mutex_t *__mutex);
--extern int weak_function __pthread_mutex_lock (pthread_mutex_t *__mutex);
--extern int weak_function __pthread_mutex_unlock (pthread_mutex_t *__mutex);
--extern void __uclibc_mutex_unlock (void *) attribute_hidden;
--extern int weak_function __pthread_mutex_trylock (pthread_mutex_t *__mutex);
--
--struct _pthread_cleanup_buffer;
--extern void weak_function _pthread_cleanup_push_defer (
-- struct _pthread_cleanup_buffer *__buffer,
-- void (*__routine) (void *), void *__arg);
--extern void weak_function _pthread_cleanup_pop_restore (
-- struct _pthread_cleanup_buffer *__buffer,
-- int __execute);
--#endif
-+#if defined _LIBC
-+/* Threading functions internal to uClibc. Make these thread functions
-+ * weak so that we can elide them from single-threaded processes. */
-+extern int __pthread_mutex_init (pthread_mutex_t *__mutex,
-+ __const pthread_mutexattr_t *__mutex_attr);
-+extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex);
-+extern int __pthread_mutex_lock (pthread_mutex_t *__mutex);
-+extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex);
-+extern void __uclibc_mutex_unlock (void *) attribute_hidden;
-+extern int __pthread_mutex_trylock (pthread_mutex_t *__mutex);
-+
-+struct _pthread_cleanup_buffer;
-+extern void _pthread_cleanup_push_defer (
-+ struct _pthread_cleanup_buffer *__buffer,
-+ void (*__routine) (void *), void *__arg);
-+extern void _pthread_cleanup_pop_restore (
-+ struct _pthread_cleanup_buffer *__buffer,
-+ int __execute);
-+#endif
-
- #endif