Procházet zdrojové kódy

Michael Troß writes: Yes, the missing initialization of uniqblock seems to cause all this trouble. Now gen_wctype works without the rlimit stack hack.

Mike Frysinger před 18 roky
rodič
revize
81f5b21c41
1 změnil soubory, kde provedl 0 přidání a 12 odebrání
  1. 0 12
      extra/locale/gen_wctype.c

+ 0 - 12
extra/locale/gen_wctype.c

@@ -8,10 +8,6 @@
 #include <wchar.h>
 #include <ctype.h>
 
-#ifdef __linux__
-#include <sys/resource.h>
-#endif
-
 #ifndef _CTYPE_H
 #define _CTYPE_H
 #endif
@@ -245,14 +241,6 @@ int main(int argc, char **argv)
 	static const char empty_slot[] = "empty_slot";
 	int built = 0;
 
-#ifdef __linux__
-	struct rlimit limit;
-
-	limit.rlim_max = RLIM_INFINITY;
-	limit.rlim_cur = RLIM_INFINITY;
-	setrlimit(RLIMIT_STACK, &limit);
-#endif
-
 #define INIT_TYPENAME(X) typename[__CTYPE_##X] = "C_" #X
 
 	for (i=0 ; i < 16 ; i++) {