gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r5175 - in GNUnet/src: applications/fs/module server util/n


From: gnunet
Subject: [GNUnet-SVN] r5175 - in GNUnet/src: applications/fs/module server util/network
Date: Fri, 29 Jun 2007 01:27:09 -0600 (MDT)

Author: grothoff
Date: 2007-06-29 01:27:09 -0600 (Fri, 29 Jun 2007)
New Revision: 5175

Modified:
   GNUnet/src/applications/fs/module/dht_push.c
   GNUnet/src/applications/fs/module/fs.c
   GNUnet/src/server/handler.c
   GNUnet/src/util/network/select.c
Log:
increasing some stack sizes

Modified: GNUnet/src/applications/fs/module/dht_push.c
===================================================================
--- GNUnet/src/applications/fs/module/dht_push.c        2007-06-29 06:56:39 UTC 
(rev 5174)
+++ GNUnet/src/applications/fs/module/dht_push.c        2007-06-29 07:27:09 UTC 
(rev 5175)
@@ -136,7 +136,7 @@
   if (! NO_PUSH) {
     thread = PTHREAD_CREATE(&push_thread,
                            NULL,
-                           1024 * 64);
+                           1024 * 128);
   }
 }
 

Modified: GNUnet/src/applications/fs/module/fs.c
===================================================================
--- GNUnet/src/applications/fs/module/fs.c      2007-06-29 06:56:39 UTC (rev 
5174)
+++ GNUnet/src/applications/fs/module/fs.c      2007-06-29 07:27:09 UTC (rev 
5175)
@@ -1196,7 +1196,7 @@
   ltgSignal = SEMAPHORE_CREATE(0);
   localGetProcessor = PTHREAD_CREATE(&localGetter,
                                     NULL,
-                                    32 * 1024);
+                                    128 * 1024);
   if (localGetProcessor == NULL)
     GE_DIE_STRERROR(ectx,
                    GE_ADMIN | GE_FATAL | GE_BULK,

Modified: GNUnet/src/server/handler.c
===================================================================
--- GNUnet/src/server/handler.c 2007-06-29 06:56:39 UTC (rev 5174)
+++ GNUnet/src/server/handler.c 2007-06-29 07:27:09 UTC (rev 5175)
@@ -626,7 +626,7 @@
   for (i=0;i<THREAD_COUNT;i++) {
     threads_[i] = PTHREAD_CREATE(&threadMain,
                                 &i,
-                                8 * 1024);
+                                128 * 1024);
     if (threads_[i] == NULL)
       GE_LOG_STRERROR(ectx,
                      GE_ERROR,

Modified: GNUnet/src/util/network/select.c
===================================================================
--- GNUnet/src/util/network/select.c    2007-06-29 06:56:39 UTC (rev 5174)
+++ GNUnet/src/util/network/select.c    2007-06-29 07:27:09 UTC (rev 5175)
@@ -874,7 +874,7 @@
     sh->listen_sock = NULL;
   sh->thread = PTHREAD_CREATE(&selectThread,
                              sh,
-                             64 * 1024);
+                             256 * 1024);
   if (sh->thread == NULL) {
     GE_LOG_STRERROR(ectx,
                    GE_ERROR | GE_IMMEDIATE | GE_ADMIN,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]