From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25927 invoked by alias); 8 Jun 2003 18:55:14 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 25881 invoked from network); 8 Jun 2003 18:55:13 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.166.107) by sources.redhat.com with SMTP; 8 Jun 2003 18:55:13 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 406952B63; Sun, 8 Jun 2003 14:55:07 -0400 (EDT) Message-ID: <3EE3868B.5080106@redhat.com> Date: Sun, 08 Jun 2003 18:55:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Andrew Cagney , Corinna Vinschen Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA]: File-I/O patch References: <20021121100341.T24928@cygbert.vinschen.de> <3E68F370.4010207@redhat.com> <20030310182555.GD1193@cygbert.vinschen.de> <3EDCE95A.1060308@redhat.com> Content-Type: multipart/mixed; boundary="------------030605080706090801020708" X-SW-Source: 2003-06/txt/msg00280.txt.bz2 This is a multi-part message in MIME format. --------------030605080706090801020708 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 500 > I'm not sure what to do next, any suggestions? None. > My best guess is if the code at least addresses the global remote_fio_data problem it avoids problems with trying to have multiple targets. The re-org needed for integrating it into remote-sim would have to come much much later (i.e., it probably wouldn't happen). Corinna, can you please check this into the mainline but with the rename: gdb/fileio.[hc] -> gdb/remote-fileio.[hc] commit/use the attached include/gdb/fileio.h. Andrew --------------030605080706090801020708 Content-Type: text/plain; name="fileio.h" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fileio.h" Content-length: 4680 /* Hosted File I/O interface definitions, for GDB, the GNU Debugger. Copyright 2003 Free Software Fondation, Inc. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef GDB_FILEIO_H #define GDB_FILEIO_H /* The following flags are defined to be independent of the host as well as the target side implementation of these constants. All constants are defined with a leading FILEIO_ in the name to allow the usage of these constants together with the corresponding implementation dependent constants in one module. */ /* open(2) flags */ #define FILEIO_O_RDONLY 0x0 #define FILEIO_O_WRONLY 0x1 #define FILEIO_O_RDWR 0x2 #define FILEIO_O_APPEND 0x8 #define FILEIO_O_CREAT 0x200 #define FILEIO_O_TRUNC 0x400 #define FILEIO_O_EXCL 0x800 #define FILEIO_O_SUPPORTED (FILEIO_O_RDONLY | FILEIO_O_WRONLY| \ FILEIO_O_RDWR | FILEIO_O_APPEND| \ FILEIO_O_CREAT | FILEIO_O_TRUNC| \ FILEIO_O_EXCL) /* mode_t bits */ #define FILEIO_S_IFREG 0100000 #define FILEIO_S_IFDIR 040000 #define FILEIO_S_IFCHR 020000 #define FILEIO_S_IRUSR 0400 #define FILEIO_S_IWUSR 0200 #define FILEIO_S_IXUSR 0100 #define FILEIO_S_IRWXU 0700 #define FILEIO_S_IRGRP 040 #define FILEIO_S_IWGRP 020 #define FILEIO_S_IXGRP 010 #define FILEIO_S_IRWXG 070 #define FILEIO_S_IROTH 04 #define FILEIO_S_IWOTH 02 #define FILEIO_S_IXOTH 01 #define FILEIO_S_IRWXO 07 #define FILEIO_S_SUPPORTED (FILEIO_S_IFREG|FILEIO_S_IFDIR| \ FILEIO_S_IRWXU|FILEIO_S_IRWXG| \ FILEIO_S_IRWXO) /* lseek(2) flags */ #define FILEIO_SEEK_SET 0 #define FILEIO_SEEK_CUR 1 #define FILEIO_SEEK_END 2 /* errno values */ #define FILEIO_EPERM 1 #define FILEIO_ENOENT 2 #define FILEIO_EINTR 4 #define FILEIO_EIO 5 #define FILEIO_EBADF 9 #define FILEIO_EACCES 13 #define FILEIO_EFAULT 14 #define FILEIO_EBUSY 16 #define FILEIO_EEXIST 17 #define FILEIO_ENODEV 19 #define FILEIO_ENOTDIR 20 #define FILEIO_EISDIR 21 #define FILEIO_EINVAL 22 #define FILEIO_ENFILE 23 #define FILEIO_EMFILE 24 #define FILEIO_EFBIG 27 #define FILEIO_ENOSPC 28 #define FILEIO_ESPIPE 29 #define FILEIO_EROFS 30 #define FILEIO_ENOSYS 88 #define FILEIO_ENAMETOOLONG 91 #define FILEIO_EUNKNOWN 9999 /* limits */ #define FILEIO_INT_MIN -2147483648L #define FILEIO_INT_MAX 2147483647L #define FILEIO_UINT_MAX 4294967295UL #define FILEIO_LONG_MIN -9223372036854775808LL #define FILEIO_LONG_MAX 9223372036854775807LL #define FILEIO_ULONG_MAX 18446744073709551615ULL #define FIO_INT_LEN 4 #define FIO_UINT_LEN 4 #define FIO_MODE_LEN 4 #define FIO_TIME_LEN 4 #define FIO_LONG_LEN 8 #define FIO_ULONG_LEN 8 typedef char fio_int_t[FIO_INT_LEN]; typedef char fio_uint_t[FIO_UINT_LEN]; typedef char fio_mode_t[FIO_MODE_LEN]; typedef char fio_time_t[FIO_TIME_LEN]; typedef char fio_long_t[FIO_LONG_LEN]; typedef char fio_ulong_t[FIO_ULONG_LEN]; /* Struct stat as used in protocol. For complete independence of host/target systems, it's defined as an array with offsets to the members. */ struct fio_stat { fio_uint_t fst_dev; fio_uint_t fst_ino; fio_mode_t fst_mode; fio_uint_t fst_nlink; fio_uint_t fst_uid; fio_uint_t fst_gid; fio_uint_t fst_rdev; fio_ulong_t fst_size; fio_ulong_t fst_blksize; fio_ulong_t fst_blocks; fio_time_t fst_atime; fio_time_t fst_mtime; fio_time_t fst_ctime; }; struct fio_timeval { fio_time_t ftv_sec; fio_long_t ftv_usec; }; #endif /* GDB_FILEIO_H */ --------------030605080706090801020708--