summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmuHS <almuhs@github.com>2019-07-13 15:30:05 +0200
committerAlmuHS <almuhs@github.com>2019-07-13 15:30:05 +0200
commit3f85f6355c2a5c33fb2c3d396e3d93771a22b44a (patch)
treecac1f1b31ccb067f5a4e29ebedee3b943faf3de0
parent1f33d530874b2e407c0921ef63e6fda4b2b856c2 (diff)
debug: added a high delay before start another cpu
-rw-r--r--i386/i386/mp_desc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/i386/i386/mp_desc.c b/i386/i386/mp_desc.c
index 858c2a63..c4e6630f 100644
--- a/i386/i386/mp_desc.c
+++ b/i386/i386/mp_desc.c
@@ -592,6 +592,8 @@ start_other_cpus(void)
cpu_start(cpu);
stack_start += STACK_SIZE;
+
+ delay(3000000);
}
}