mirror of https://github.com/FDOS/kernel.git
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:
parent
ba0b070222
commit
46b58be248
|
@ -154,7 +154,7 @@ struct config Config = {
|
|||
0,
|
||||
NSTACKS,
|
||||
0,
|
||||
128
|
||||
STACKSIZE
|
||||
/* COUNTRY= is initialized within DoConfig() */
|
||||
, 0 /* country ID */
|
||||
, 0 /* codepage */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue