aboutsummaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
Diffstat (limited to 'scd')
-rw-r--r--scd/ChangeLog4
-rw-r--r--scd/scdaemon.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog
index 1d3cff257..3a634b92b 100644
--- a/scd/ChangeLog
+++ b/scd/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-22 Werner Koch <[email protected]>
+
+ * scdaemon.c (main): Bumbed thread stack size up to 512k.
+
2004-07-16 Werner Koch <[email protected]>
* apdu.c (reader_table_s): Add function pointers for the backends.
diff --git a/scd/scdaemon.c b/scd/scdaemon.c
index 5e9737ae4..b0038de16 100644
--- a/scd/scdaemon.c
+++ b/scd/scdaemon.c
@@ -603,7 +603,7 @@ main (int argc, char **argv )
tattr = pth_attr_new();
pth_attr_set (tattr, PTH_ATTR_JOINABLE, 0);
- pth_attr_set (tattr, PTH_ATTR_STACK_SIZE, 64*1024);
+ pth_attr_set (tattr, PTH_ATTR_STACK_SIZE, 512*1024);
pth_attr_set (tattr, PTH_ATTR_NAME, "ticker");
if (!pth_spawn (tattr, ticker_thread, NULL))