diff options
author | Gary Benson <gbenson@redhat.com> | 2015-04-09 14:22:56 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2015-04-09 15:44:31 +0100 |
commit | 7823a9415b2919241f7a7425d9dcc3c62ada0779 (patch) | |
tree | 238d4dccfc050a06cba128899f88a6a8407feb77 /gdb/Makefile.in | |
parent | 233723a43c5677ae6a5a8bd9c2ac54bae333fe26 (diff) | |
download | gdb-7823a9415b2919241f7a7425d9dcc3c62ada0779.zip gdb-7823a9415b2919241f7a7425d9dcc3c62ada0779.tar.gz gdb-7823a9415b2919241f7a7425d9dcc3c62ada0779.tar.bz2 |
Rename common-remote-fileio.[ch] as fileio.[ch]
This commit renames common-remote-fileio.[ch] as fileio.[ch]
and renames all functions in these files.
gdb/ChangeLog:
* common/common-remote-fileio.h: Rename to...
* common/fileio.h: ...this. Update all references.
(remote_fileio_to_fio_error): Rename to...
(host_to_fileio_error): ...this.
(remote_fileio_to_be): Rename to...
(host_to_bigendian): ...this. Update all callers.
(remote_fileio_to_fio_uint): Rename to...
(host_to_fileio_uint): ...this. Update all callers.
(remote_fileio_to_fio_time): Rename to...
(host_to_fileio_time): ...this. Update all callers.
(remote_fileio_to_fio_stat): Rename to...
(host_to_fileio_stat): ...this.
Update all references.
* common/common-remote-fileio.c: Rename to...
* common/fileio.c: ...this. Update all references.
(remote_fileio_to_fio_error): Rename to...
(host_to_fileio_error): ...this. Update all callers.
(remote_fileio_mode_to_target): Rename to...
(fileio_mode_pack): ...this. Update all callers.
(remote_fileio_to_fio_mode): Rename to...
(host_to_fileio_mode): ...this. Update all callers.
(remote_fileio_to_fio_ulong): Rename to...
(host_to_fileio_ulong): ...this. Update all callers.
(remote_fileio_to_fio_stat): Rename to...
(host_to_fileio_stat): ...this. Update all callers.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 87645cd..95104ef 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -888,7 +888,7 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ common/format.c common/filestuff.c btrace.c record-btrace.c ctf.c \ target/waitstatus.c common/print-utils.c common/rsp-low.c \ common/errors.c common/common-debug.c common/common-exceptions.c \ - common/btrace-common.c common/common-remote-fileio.c \ + common/btrace-common.c common/fileio.c \ $(SUBDIR_GCC_COMPILE_SRCS) LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c @@ -979,7 +979,7 @@ i386-linux-nat.h common/common-defs.h common/errors.h common/common-types.h \ common/common-debug.h common/cleanups.h common/gdb_setjmp.h \ common/common-exceptions.h target/target.h common/symbol.h \ common/common-regcache.h fbsd-tdep.h nat/linux-personality.h \ -common/common-remote-fileio.h nat/x86-linux.h nat/x86-linux-dregs.h +common/fileio.h nat/x86-linux.h nat/x86-linux-dregs.h # Header files that already have srcdir in them, or which are in objdir. @@ -1079,7 +1079,7 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o \ format.o registry.o btrace.o record-btrace.o waitstatus.o \ print-utils.o rsp-low.o errors.o common-debug.o debug.o \ - common-exceptions.o btrace-common.o common-remote-fileio.o \ + common-exceptions.o btrace-common.o fileio.o \ $(SUBDIR_GCC_COMPILE_OBS) TSOBS = inflow.o @@ -2257,8 +2257,8 @@ btrace-common.o: ${srcdir}/common/btrace-common.c $(COMPILE) $(srcdir)/common/btrace-common.c $(POSTCOMPILE) -common-remote-fileio.o: ${srcdir}/common/common-remote-fileio.c - $(COMPILE) $(srcdir)/common/common-remote-fileio.c +fileio.o: ${srcdir}/common/fileio.c + $(COMPILE) $(srcdir)/common/fileio.c $(POSTCOMPILE) # # gdb/target/ dependencies |