Change default STACKS= size to 256.

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@827 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2004-03-26 23:15:23 +00:00
parent ba0b070222
commit 46b58be248
2 changed files with 2 additions and 1 deletions

View File

@ -154,7 +154,7 @@ struct config Config = {
0,
NSTACKS,
0,
128
STACKSIZE
/* COUNTRY= is initialized within DoConfig() */
, 0 /* country ID */
, 0 /* codepage */

View File

@ -74,6 +74,7 @@ void MoveKernel(unsigned NewKernelSegment);
#define NFILES 16 /* number of files in table */
#define NFCBS 16 /* number of fcbs */
#define NSTACKS 8 /* number of stacks */
#define STACKSIZE 256 /* default stacksize */
#define NLAST 5 /* last drive */
#define NUMBUFF 20 /* Number of track buffers at INIT time */
/* -- must be at least 3 */