diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-04-11 14:05:23 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-04-11 14:05:23 +0200 |
commit | 9ae99fb5ad34f5b587129f5acddf77cbaa6fba17 (patch) | |
tree | 06e1393b8dc7b7ce8642b6c852f5e987581ea0f8 /sys/src/9/kw | |
parent | f4f19cdf1a8f0d2aa5f9fce10c896201528b5347 (diff) |
kernel: get rid of KSTKSIZE alias for KSTACK
Diffstat (limited to 'sys/src/9/kw')
-rw-r--r-- | sys/src/9/kw/mem.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/kw/mem.h b/sys/src/9/kw/mem.h index 775933bc3..36c4f1c1e 100644 --- a/sys/src/9/kw/mem.h +++ b/sys/src/9/kw/mem.h @@ -39,7 +39,7 @@ #define MAXMACH 1 /* max # cpus system can run */ #define MACHSIZE BY2PG -#define KSTKSIZE (8*KiB) +#define KSTACK (8*KiB) #define STACKALIGN(sp) ((sp) & ~3) /* bug: assure with alloc */ /* @@ -91,7 +91,6 @@ * Legacy... */ #define BLOCKALIGN 32 /* only used in allocb.c */ -#define KSTACK KSTKSIZE /* * Sizes |