]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Revert r12128 because it triggers an assertion failure on one of the nightly build...
authorBart Van Assche <bvanassche@acm.org>
Tue, 11 Oct 2011 10:56:11 +0000 (10:56 +0000)
committerBart Van Assche <bvanassche@acm.org>
Tue, 11 Oct 2011 10:56:11 +0000 (10:56 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12133

memcheck/tests/err_disable4.c

index 0eb91cb689fac804f877b30fc731f8adf051efa6..4fb912b3f0f3438d56a5c200cf018f0b4db66af1 100644 (file)
@@ -77,7 +77,7 @@ int main ( void )
 
   pthread_attr_t attr;
   r = pthread_attr_init(&attr); assert(!r);
-  r = pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 4096); assert(!r);
+  r = pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
 
   // create N threads to do child_fn_1 ...
   for (i = 0; i < NTHREADS; i++) {