VFS/libblockdriver: enlarge threads stacks for ASR

Change-Id: If4e858bc2dbb2c69850cd265ff612bd5a6119bd3
This commit is contained in:
David van Moolenbroek 2015-09-04 03:24:52 +02:00
parent f55e3cae08
commit ef52a26bab
2 changed files with 7 additions and 1 deletions

View file

@ -2,7 +2,11 @@
#define _BLOCKDRIVER_CONST_H
/* Thread stack size. */
#ifdef _MINIX_MAGIC
#define STACK_SIZE 32768
#else
#define STACK_SIZE 8192
#endif
/* Maximum number of devices supported. */
#define MAX_DEVICES BLOCKDRIVER_MAX_DEVICES

View file

@ -11,7 +11,9 @@ static unsigned int pending;
static unsigned int busy;
static int block_all;
#ifdef MKCOVERAGE
#if defined(_MINIX_MAGIC)
# define TH_STACKSIZE (64 * 1024)
#elif defined(MKCOVERAGE)
# define TH_STACKSIZE (40 * 1024)
#else
# define TH_STACKSIZE (28 * 1024)