diff options
| author | Lars-Peter Clausen | 2008-09-22 22:51:53 +0000 |
|---|---|---|
| committer | Lars-Peter Clausen | 2008-09-22 22:51:53 +0000 |
| commit | 806222ece9a606517d0774bd1bf02b11e5f4076a (patch) | |
| tree | 21060a1d55e5554ffcd519830916459f0940683d | |
| parent | 8374ff0f6c3aa23dbc8f4248a2cdef1a95cc2294 (diff) | |
| download | archive-806222ece9a606517d0774bd1bf02b11e5f4076a.tar.gz | |
Avoid endless recursion in uClibc pthreads.
SVN-Revision: 12652
| -rw-r--r-- | toolchain/uClibc/patches/140-fix-endless-recursion-in-pthread.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches/140-fix-endless-recursion-in-pthread.patch b/toolchain/uClibc/patches/140-fix-endless-recursion-in-pthread.patch new file mode 100644 index 0000000000..9a61a40a39 --- /dev/null +++ b/toolchain/uClibc/patches/140-fix-endless-recursion-in-pthread.patch @@ -0,0 +1,14 @@ +diff -urN uClibc-0.9.29.orig/libpthread/linuxthreads.old/pthread.c uClibc-0.9.29/libpthread/linuxthreads.old/pthread.c +--- uClibc-0.9.29.orig/libpthread/linuxthreads.old/pthread.c 2008-09-18 06:18:00.000000000 +0200 ++++ uClibc-0.9.29/libpthread/linuxthreads.old/pthread.c 2008-09-18 06:19:06.000000000 +0200 +@@ -335,9 +335,9 @@ + .ptr_pthread_raise = pthread_raise, + .ptr__pthread_cleanup_push = _pthread_cleanup_push, + .ptr__pthread_cleanup_pop = _pthread_cleanup_pop +-*/ + .ptr__pthread_cleanup_push_defer = _pthread_cleanup_push_defer, + .ptr__pthread_cleanup_pop_restore = _pthread_cleanup_pop_restore, ++*/ + }; + #ifdef SHARED + # define ptr_pthread_functions &__pthread_functions |