diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-15 02:32:06 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-15 02:53:29 -0500 |
commit | e8f20a28b1192d746475f045d77ac84411f164df (patch) | |
tree | 3ff31f3c32862561e65c1d23650b13eb0c28702a /sim/common/sim-utils.c | |
parent | 7b2ec4e46fb726a7616a07e67c4270f48c8c546e (diff) | |
download | binutils-e8f20a28b1192d746475f045d77ac84411f164df.zip binutils-e8f20a28b1192d746475f045d77ac84411f164df.tar.gz binutils-e8f20a28b1192d746475f045d77ac84411f164df.tar.bz2 |
sim: split program path out of argv vector
We use the program argv to both find the program to run (argv[0]) and
to hold the arguments to the program. Most of the time this is fine,
but if we want to let programs specify argv[0] independently (which is
possible in standard *NIX programs), this double duty doesn't work.
So let's split the path to the program to run out into a separate
field by itself. This simplifies the various sim_open funcs too.
By itself, this code is more of a logical cleanup than something that
is super useful. But it will open up customization of argv[0] in a
follow up commit. Split the changes to make it easier to review.
Diffstat (limited to 'sim/common/sim-utils.c')
-rw-r--r-- | sim/common/sim-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/common/sim-utils.c b/sim/common/sim-utils.c index 88fd20e..0e8cd5a 100644 --- a/sim/common/sim-utils.c +++ b/sim/common/sim-utils.c @@ -97,6 +97,7 @@ sim_state_free (SIM_DESC sd) SIM_STATE_FREE (sd); #endif + free (STATE_PROG_FILE (sd)); free (sd); } |