[0/2] Rename two structures

Message ID 20240205201954.122492-1-simon.marchi@efficios.com
Headers
Series Rename two structures |

Message

Simon Marchi Feb. 5, 2024, 8:18 p.m. UTC
  I'm currently doing changes in the solib area.  I have these preparatory
patches that I think make sense on their own.  They could be merged
right away to reduce the size of upcoming series.

Simon Marchi (2):
  gdb: rename struct shobj -> struct solib
  gdb: rename target_so_ops to solib_ops

 gdb/break-catch-load.c    |   2 +-
 gdb/breakpoint.c          |   4 +-
 gdb/bsd-uthread.c         |   4 +-
 gdb/frv-tdep.h            |   4 +-
 gdb/gdbarch-gen.h         |   4 +-
 gdb/gdbarch.c             |   6 +-
 gdb/gdbarch.h             |   1 +
 gdb/gdbarch_components.py |   2 +-
 gdb/hppa-tdep.c           |   2 +-
 gdb/hppa-tdep.h           |   4 +-
 gdb/i386-nto-tdep.c       |   2 +-
 gdb/interps.c             |   4 +-
 gdb/interps.h             |  10 +-
 gdb/mi/mi-cmd-file.c      |   2 +-
 gdb/mi/mi-interp.c        |   6 +-
 gdb/mi/mi-interp.h        |   6 +-
 gdb/mips-linux-tdep.c     |   2 +-
 gdb/nto-tdep.c            |   4 +-
 gdb/nto-tdep.h            |   2 +-
 gdb/observable.h          |   6 +-
 gdb/ppc-linux-tdep.c      |   2 +-
 gdb/progspace.c           |   2 +-
 gdb/progspace.h           |   8 +-
 gdb/solib-aix.c           |  28 +--
 gdb/solib-aix.h           |   4 +-
 gdb/solib-darwin.c        |  12 +-
 gdb/solib-darwin.h        |   4 +-
 gdb/solib-dsbt.c          |  14 +-
 gdb/solib-dsbt.h          |   4 +-
 gdb/solib-frv.c           |  20 +-
 gdb/solib-rocm.c          |  18 +-
 gdb/solib-svr4.c          |  54 ++---
 gdb/solib-svr4.h          |   4 +-
 gdb/solib-target.c        |  12 +-
 gdb/solib-target.h        |   4 +-
 gdb/solib.c               | 441 +++++++++++++++++++-------------------
 gdb/solib.h               |   8 +-
 gdb/solist.h              |  16 +-
 gdb/target-section.h      |   8 +-
 gdb/windows-tdep.c        |   4 +-
 40 files changed, 371 insertions(+), 373 deletions(-)


base-commit: 68d3bf7d246321407697aeb036036dae1a99a742
  

Comments

Tom Tromey Feb. 5, 2024, 8:34 p.m. UTC | #1
>>>>> "Simon" == Simon Marchi <simon.marchi@efficios.com> writes:

Simon> I'm currently doing changes in the solib area.  I have these preparatory
Simon> patches that I think make sense on their own.  They could be merged
Simon> right away to reduce the size of upcoming series.

These both seem fine to me.
Approved-By: Tom Tromey <tom@tromey.com>

Tom
  
Simon Marchi Feb. 5, 2024, 9:11 p.m. UTC | #2
On 2/5/24 15:34, Tom Tromey wrote:
>>>>>> "Simon" == Simon Marchi <simon.marchi@efficios.com> writes:
> 
> Simon> I'm currently doing changes in the solib area.  I have these preparatory
> Simon> patches that I think make sense on their own.  They could be merged
> Simon> right away to reduce the size of upcoming series.
> 
> These both seem fine to me.
> Approved-By: Tom Tromey <tom@tromey.com>
> 
> Tom

Thanks, pushed.

Simon