diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2024-04-22 16:10:11 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2024-04-22 21:34:19 -0400 |
commit | 7b21ae941ee8e296c6aea21df1ede6cc3cffe248 (patch) | |
tree | 8b883c37450d0d40d4322d829c5878b1381bedb6 /gdb/progspace.h | |
parent | 5b4c41267ff1ac2c907176bc81e2490d7e68c696 (diff) | |
download | gdb-7b21ae941ee8e296c6aea21df1ede6cc3cffe248.zip gdb-7b21ae941ee8e296c6aea21df1ede6cc3cffe248.tar.gz gdb-7b21ae941ee8e296c6aea21df1ede6cc3cffe248.tar.bz2 |
gdb: move two declarations out of defs.h
Move declarations of initialize_progspace and initialize_inferiors to
progspace.h and inferior.h, respectively.
Change-Id: I62292ffda429861b9f27d8c836a56d161dfa548d
Approved-By: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to 'gdb/progspace.h')
-rw-r--r-- | gdb/progspace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/progspace.h b/gdb/progspace.h index 7f5e23d..bbf54ef 100644 --- a/gdb/progspace.h +++ b/gdb/progspace.h @@ -424,6 +424,9 @@ extern std::vector<struct program_space *>program_spaces; /* The current program space. This is always non-null. */ extern struct program_space *current_program_space; +/* Initialize progspace-related global state. */ +extern void initialize_progspace (); + /* Copies program space SRC to DEST. Copies the main executable file, and the main symbol file. Returns DEST. */ extern struct program_space *clone_program_space (struct program_space *dest, |