about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c b/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c
deleted file mode 100644
index 6fedac1b33..0000000000
--- a/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <unistd.h>	/* For __getpagesize.  */
-#define NEW_VERNUM GLIBC_2_6
-#define STACKSIZE_ADJUST \
-  do {									      \
-    size_t ps = __getpagesize ();					      \
-    if (stacksize < 2 * ps)						      \
-      stacksize = 2 * ps;						      \
-  } while (0)
-#include <nptl/pthread_attr_setstacksize.c>