diff options
Diffstat (limited to 'nscd/nscd.h')
-rw-r--r-- | nscd/nscd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nscd/nscd.h b/nscd/nscd.h index 7ff3894f18..cd6fe15c30 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -58,6 +58,10 @@ typedef enum /* Stack size for worker threads. */ #define NSCD_THREAD_STACKSIZE 1024 * 1024 * (sizeof (void *) / 4) +/* Maximum size of stack frames we allow the thread to use. We use + 80% of the thread stack size. */ +#define MAX_STACK_USE ((8 * NSCD_THREAD_STACKSIZE) / 10) + /* Structure describing dynamic part of one database. */ struct database_dyn |