summaryrefslogtreecommitdiff
path: root/kern/xcall.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-09-21 01:23:37 +0200
committerRichard Braun <rbraun@sceen.net>2017-09-21 01:26:09 +0200
commit1ff3666dc29c0eacf911c57d3e6b6a62bdc9cb78 (patch)
treea1c7d98eb2a370975bd82c6d3dc16349636ddddf /kern/xcall.c
parentd115a8cee02be828d46651a5fc91fdbfe23985f2 (diff)
New build system
The new build system, called xbuild, is a minimalistic kbuild-like make-based build system, also using kconfig for scalable configurations.
Diffstat (limited to 'kern/xcall.c')
-rw-r--r--kern/xcall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/xcall.c b/kern/xcall.c
index 1251f28c..5a431b2f 100644
--- a/kern/xcall.c
+++ b/kern/xcall.c
@@ -50,7 +50,7 @@ struct xcall {
* between multiple cross-calls.
*/
struct xcall_cpu_data {
- alignas(CPU_L1_SIZE) struct xcall send_calls[X15_MAX_CPUS];
+ alignas(CPU_L1_SIZE) struct xcall send_calls[CONFIG_MAX_CPUS];
struct xcall *recv_call;
struct spinlock lock;