aboutsummaryrefslogtreecommitdiff
path: root/sim/lm32
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2022-12-25 00:53:25 -0500
committerMike Frysinger <vapier@gentoo.org>2022-12-25 02:10:46 -0500
commit883be197745c9a9ea626cf0671e8bb0109d21a36 (patch)
tree0c19d5fa5fb39952a439f495c29c32e5ea777738 /sim/lm32
parentsim: msp430: add basic SMP cpu init (diff)
downloadbinutils-gdb-883be197745c9a9ea626cf0671e8bb0109d21a36.tar.gz
binutils-gdb-883be197745c9a9ea626cf0671e8bb0109d21a36.tar.bz2
binutils-gdb-883be197745c9a9ea626cf0671e8bb0109d21a36.zip
sim: cpu: change default init to handle all cpus
All the runtimes were only initializing a single CPU. When SMP is enabled, things quickly crash as none of the other CPU structs are setup. Change the default from 0 to the compile time value.
Diffstat (limited to 'sim/lm32')
-rw-r--r--sim/lm32/sim-if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/lm32/sim-if.c b/sim/lm32/sim-if.c
index 82f2e117671..b5102805512 100644
--- a/sim/lm32/sim-if.c
+++ b/sim/lm32/sim-if.c
@@ -101,7 +101,7 @@ sim_open (SIM_OPEN_KIND kind, host_callback *callback, struct bfd *abfd,
current_target_byte_order = BFD_ENDIAN_BIG;
/* The cpu data is kept in a separately allocated chunk of memory. */
- if (sim_cpu_alloc_all_extra (sd, 1, sizeof (struct lm32_sim_cpu))
+ if (sim_cpu_alloc_all_extra (sd, 0, sizeof (struct lm32_sim_cpu))
!= SIM_RC_OK)
{
free_state (sd);