diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-02-27 16:50:21 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-02-27 16:50:21 +0400 |
commit | 8a8680bfb817a25fdc04b6ce5e55605b1ac63d3d (patch) | |
tree | c6f9a00188a7da65916838e572367d70cc94453e /accel-pppd/triton | |
parent | ccfc36744c585a4ea4fb5d5c4e183e9bbd293852 (diff) | |
download | accel-ppp-8a8680bfb817a25fdc04b6ce5e55605b1ac63d3d.tar.gz accel-ppp-8a8680bfb817a25fdc04b6ce5e55605b1ac63d3d.zip |
core: increase stack size
Diffstat (limited to 'accel-pppd/triton')
-rw-r--r-- | accel-pppd/triton/triton.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/accel-pppd/triton/triton.c b/accel-pppd/triton/triton.c index e2d8c012..02af0354 100644 --- a/accel-pppd/triton/triton.c +++ b/accel-pppd/triton/triton.c @@ -10,11 +10,7 @@ #include "triton_p.h" #include "memdebug.h" -#if __WORDSIZE == 32 -#define WORKER_STACK_SIZE 64*1024 -#else -#define WORKER_STACK_SIZE 128*1024 -#endif +#define WORKER_STACK_SIZE 1024*1024 int thread_count = 2; int thread_count_max = 200; |