uclibc: remove version 0.9.33
[openwrt/svn-archive/archive.git] / toolchain / uClibc / patches-0.9.33.2 / 190-nptl_use_arch_default_stack_limit.patch
diff --git a/toolchain/uClibc/patches-0.9.33.2/190-nptl_use_arch_default_stack_limit.patch b/toolchain/uClibc/patches-0.9.33.2/190-nptl_use_arch_default_stack_limit.patch
deleted file mode 100644 (file)
index b7f5c82..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/libpthread/nptl/init.c
-+++ b/libpthread/nptl/init.c
-@@ -402,6 +402,10 @@ __pthread_initialize_minimal_internal (v
-        Use the minimal size acceptable.  */
-     limit.rlim_cur = PTHREAD_STACK_MIN;
-+  /* Do not exceed architecture specific default */
-+  if (limit.rlim_cur > ARCH_STACK_DEFAULT_SIZE)
-+    limit.rlim_cur = ARCH_STACK_DEFAULT_SIZE;
-+
-   /* Make sure it meets the minimum size that allocate_stack
-      (allocatestack.c) will demand, which depends on the page size.  */
-   const uintptr_t pagesz = sysconf (_SC_PAGESIZE);