This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb fileio tweak


Index: current/ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/common/current/ChangeLog,v
retrieving revision 1.84
diff -u -p -5 -r1.84 ChangeLog
--- current/ChangeLog	31 Jan 2003 16:45:58 -0000	1.84
+++ current/ChangeLog	13 Feb 2003 14:25:38 -0000
@@ -1,5 +1,9 @@
+2003-02-13  Mark Salter  <msalter@redhat.com>
+
+	* src/gdb-fileio.h (FILEIO_O_BINARY): New flag.
+
 2003-01-31  Mark Salter  <msalter@redhat.com>
 
 	* include/hal_if.h: Add CYGNUM_CALL_IF_MONITOR_RETURN.
 
 2002-12-04  Gary Thomas  <gthomas@ecoscentric.com>
Index: current/src/gdb-fileio.h
===================================================================
RCS file: /cvs/ecos/ecos/packages/hal/common/current/src/gdb-fileio.h,v
retrieving revision 1.1
diff -u -p -5 -r1.1 gdb-fileio.h
--- current/src/gdb-fileio.h	20 May 2002 22:22:32 -0000	1.1
+++ current/src/gdb-fileio.h	13 Feb 2003 14:25:38 -0000
@@ -22,14 +22,15 @@
 #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_BINARY       0x10000
 #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)
+				 FILEIO_O_EXCL | FILEIO_O_BINARY)
 
 /* mode_t bits */
 #define FILEIO_S_IFREG        0100000
 #define FILEIO_S_IFDIR         040000
 #define FILEIO_S_IFCHR         020000


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]