Sign in
akaros
/
upstream
/
eaa24bf8e75eda294a0d0ce80a89fe0452fb2867
/
.
/
kern
/
include
/
kstack.h
blob: b6e0e3d2dbb64913370c2813353bf47c79145389 [
file
] [
log
] [
blame
]
#pragma
once
#ifdef
CONFIG_LARGE_KSTACKS
#define
KSTKSHIFT
(
PGSHIFT
+
1
)
/* KSTKSIZE == 2 * PGSIZE */
#else
#define
KSTKSHIFT
(
PGSHIFT
)
/* KSTKSIZE == PGSIZE */
#endif
#define
KSTKSIZE
(
1
<<
KSTKSHIFT
)
/* size of a static kernel stack */