diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-15 23:00:04 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-16 00:58:41 -0500 |
commit | 54f7a83a62c27d6da9ee66da1022572d6ea45d84 (patch) | |
tree | eb0670d282c37c15e28f3f4b3344285d7581399d /sim/ft32 | |
parent | 38f9e52086c8d513bc7ef713043c03752924df89 (diff) | |
download | gdb-54f7a83a62c27d6da9ee66da1022572d6ea45d84.zip gdb-54f7a83a62c27d6da9ee66da1022572d6ea45d84.tar.gz gdb-54f7a83a62c27d6da9ee66da1022572d6ea45d84.tar.bz2 |
sim: keep track of program environment strings
We've been passing the environment strings to sim_create_inferior,
but most ports don't do anything with them. A few will use ad-hoc
logic to stuff the stack for user-mode programs, but that's it.
Let's formalize this across the board by storing the strings in the
normal sim state. This will allow (in future commits) supporting
more functionality in the run interface, and to unify some of the
libgloss syscalls.
Diffstat (limited to 'sim/ft32')
-rw-r--r-- | sim/ft32/interp.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sim/ft32/interp.c b/sim/ft32/interp.c index a1cc9ab..2838395 100644 --- a/sim/ft32/interp.c +++ b/sim/ft32/interp.c @@ -900,6 +900,13 @@ sim_create_inferior (SIM_DESC sd, freeargv (STATE_PROG_ARGV (sd)); STATE_PROG_ARGV (sd) = dupargv (argv); } + + if (STATE_PROG_ENVP (sd) != env) + { + freeargv (STATE_PROG_ENVP (sd)); + STATE_PROG_ENVP (sd) = dupargv (env); + } + cpu->state.regs[FT32_HARD_SP] = addr; cpu->state.num_i = 0; cpu->state.cycles = 0; |