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/teg2 | |
parent | f4f19cdf1a8f0d2aa5f9fce10c896201528b5347 (diff) |
kernel: get rid of KSTKSIZE alias for KSTACK
Diffstat (limited to 'sys/src/9/teg2')
-rw-r--r-- | sys/src/9/teg2/mem.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/teg2/mem.h b/sys/src/9/teg2/mem.h index c891ae7db..08bdefdb9 100644 --- a/sys/src/9/teg2/mem.h +++ b/sys/src/9/teg2/mem.h @@ -41,7 +41,7 @@ #define MACHSIZE BY2PG #define L1SIZE (4 * BY2PG) -#define KSTKSIZE (16*KiB) /* was 8K */ +#define KSTACK (16*KiB) /* was 8K */ #define STACKALIGN(sp) ((sp) & ~7) /* bug: assure with alloc */ /* @@ -97,7 +97,6 @@ * Legacy... */ #define BLOCKALIGN CACHELINESZ /* only used in allocb.c */ -#define KSTACK KSTKSIZE /* * Sizes |