diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-24 22:59:51 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2020-10-25 09:06:09 -0400 |
commit | 324956617c35b0e204f54b8da8db2de2bd3b129e (patch) | |
tree | 27c477731c7b60c9a7fbbd88db7ce6b9ef453024 /gdb/infrun.c | |
parent | 3f66685e9e92717af0cafa20480de5548aea7298 (diff) | |
download | gdb-324956617c35b0e204f54b8da8db2de2bd3b129e.zip gdb-324956617c35b0e204f54b8da8db2de2bd3b129e.tar.gz gdb-324956617c35b0e204f54b8da8db2de2bd3b129e.tar.bz2 |
gdb: make jit.c use the inferior_created inferior parameter
Use the inferior parameter now available in jit_inferior_created_hook.
It is passed down to jit_inferior_init, which uses it as much as
possible instead of the current inferior or current program space.
gdb/ChangeLog:
* jit.c (jit_reader_load_command): Pass current inferior.
(jit_inferior_init): Change parameter type to inferior, use it.
(jit_inferior_created): Remove.
(jit_inferior_created_hook): Pass inferior parameter down.
(_initialize_jit): Use jit_inferior_created_hook instead of
jit_inferior_created.
* jit.h (jit_inferior_created_hook): Add inferior parameter.
* infrun.c (follow_exec): Pass inferior to
jit_inferior_created_hook.
Change-Id: If3a2114a933370dd313d5abd623136d273cdb8fa
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index c2acea6..5a6ff16 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -1236,7 +1236,7 @@ follow_exec (ptid_t ptid, const char *exec_file_target) solib_create_inferior_hook (0); - jit_inferior_created_hook (); + jit_inferior_created_hook (inf); breakpoint_re_set (); |