Browse Source

2006-07-03 Nathan J. Williams <nathanw@wasabisystems.com>

* bsd-kvm.c (bsd_kvm_open): Open the KVM interface read-write if
        write_files is set.
cr-0x5f1
Nathan J. Williams 20 years ago
parent
commit
4a35b02aee
  1. 5
      gdb/ChangeLog
  2. 3
      gdb/bsd-kvm.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2006-07-03 Nathan J. Williams <nathanw@wasabisystems.com>
* bsd-kvm.c (bsd_kvm_open): Open the KVM interface read-write if
write_files is set.
2006-06-24 Eli Zaretskii <eliz@gnu.org>
* defs.h (DIRNAME_SEPARATOR) [!__CYGWIN__ && _WIN32]: Define to `;'.

3
gdb/bsd-kvm.c

@ -81,7 +81,8 @@ bsd_kvm_open (char *filename, int from_tty)
}
execfile = get_exec_file (0);
temp_kd = kvm_openfiles (execfile, filename, NULL, O_RDONLY, errbuf);
temp_kd = kvm_openfiles (execfile, filename, NULL,
write_files ? O_RDWR : O_RDONLY, errbuf);
if (temp_kd == NULL)
error (("%s"), errbuf);

Loading…
Cancel
Save