summaryrefslogtreecommitdiffstats
path: root/utils/async_netdb.c
diff options
context:
space:
mode:
authorSimon Rettberg2024-09-06 14:42:37 +0200
committerSimon Rettberg2024-09-06 14:42:37 +0200
commitbadef32037f52f79abc1f1440b786cd71afdf270 (patch)
tree412b792d4cab4a7a110db82fcf74fe8a1ac55ec1 /utils/async_netdb.c
parentDelete pre-6.00 files (diff)
downloadxscreensaver-badef32037f52f79abc1f1440b786cd71afdf270.tar.gz
xscreensaver-badef32037f52f79abc1f1440b786cd71afdf270.tar.xz
xscreensaver-badef32037f52f79abc1f1440b786cd71afdf270.zip
Diffstat (limited to 'utils/async_netdb.c')
-rw-r--r--utils/async_netdb.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/async_netdb.c b/utils/async_netdb.c
index d9e2102..8ab0570 100644
--- a/utils/async_netdb.c
+++ b/utils/async_netdb.c
@@ -14,6 +14,7 @@
* gethostby(name/addr), for Sonar.
*/
+#include <stdio.h>
#include "async_netdb.h"
#include "thread_util.h"
@@ -25,9 +26,9 @@
#include <string.h>
#include <unistd.h>
-/* This is very much system-dependent, but hopefully 64K covers it just about
- everywhere. The threads here shouldn't need much. */
-#define ASYNC_NETDB_STACK 65536
+/* This is very much system-dependent, but hopefully 128K covers it just about
+everywhere. The threads here shouldn't need much. */
+#define ASYNC_NETDB_STACK 131072
#if ASYNC_NETDB_USE_GAI