diff options
author | Gary Benson <gbenson@redhat.com> | 2015-04-21 12:07:54 +0100 |
---|---|---|
committer | Gary Benson <gbenson@redhat.com> | 2015-04-21 12:09:24 +0100 |
commit | 819843c7029916120aa2929f80e0d7276177a7fb (patch) | |
tree | f00b335b1e3b2af0368862d09736e8e135f2da27 /gdb/gdbserver/hostio.c | |
parent | 43236bb2551a9783ff0de5e95bf75f905300eb06 (diff) | |
download | gdb-819843c7029916120aa2929f80e0d7276177a7fb.zip gdb-819843c7029916120aa2929f80e0d7276177a7fb.tar.gz gdb-819843c7029916120aa2929f80e0d7276177a7fb.tar.bz2 |
Introduce new shared function fileio_to_host_openflags
This commit introduces a new shared function to replace identical
functions in GDB and gdbserver.
Diffstat (limited to 'gdb/gdbserver/hostio.c')
-rw-r--r-- | gdb/gdbserver/hostio.c | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/gdb/gdbserver/hostio.c b/gdb/gdbserver/hostio.c index b03b5ad..9e858d9 100644 --- a/gdb/gdbserver/hostio.c +++ b/gdb/gdbserver/hostio.c @@ -243,38 +243,6 @@ hostio_reply_with_data (char *own_buf, char *buffer, int len, return input_index; } -static int -fileio_open_flags_to_host (int fileio_open_flags, int *open_flags_p) -{ - int open_flags = 0; - - if (fileio_open_flags & ~FILEIO_O_SUPPORTED) - return -1; - - if (fileio_open_flags & FILEIO_O_CREAT) - open_flags |= O_CREAT; - if (fileio_open_flags & FILEIO_O_EXCL) - open_flags |= O_EXCL; - if (fileio_open_flags & FILEIO_O_TRUNC) - open_flags |= O_TRUNC; - if (fileio_open_flags & FILEIO_O_APPEND) - open_flags |= O_APPEND; - if (fileio_open_flags & FILEIO_O_RDONLY) - open_flags |= O_RDONLY; - if (fileio_open_flags & FILEIO_O_WRONLY) - open_flags |= O_WRONLY; - if (fileio_open_flags & FILEIO_O_RDWR) - open_flags |= O_RDWR; -/* On systems supporting binary and text mode, always open files in - binary mode. */ -#ifdef O_BINARY - open_flags |= O_BINARY; -#endif - - *open_flags_p = open_flags; - return 0; -} - static void handle_open (char *own_buf) { @@ -291,7 +259,7 @@ handle_open (char *own_buf) || require_comma (&p) || require_int (&p, &mode) || require_end (p) - || fileio_open_flags_to_host (fileio_flags, &flags)) + || fileio_to_host_openflags (fileio_flags, &flags)) { hostio_packet_error (own_buf); return; |