change log for rtems (2011-02-08)

rtems-vc at rtems.org rtems-vc at rtems.org
Tue Feb 8 07:10:22 UTC 2011


 *ralf* (on branch rtems-4-10-branch):
2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>

	* include/pmacros.h: Add PRIxblksize_t, PRIxblkcnt_t.
	* configure.ac: Add AC_CHECK_SIZEOF([blksize_t]),
	AC_CHECK_SIZEOF([blkcnt_t]).

M  1.329  testsuites/psxtests/ChangeLog
M 1.264.2.3  testsuites/psxtests/ChangeLog
M   1.81  testsuites/psxtests/configure.ac
M 1.61.2.3  testsuites/psxtests/configure.ac
M   1.13  testsuites/psxtests/include/pmacros.h
M 1.12.2.1  testsuites/psxtests/include/pmacros.h

diff -u rtems/testsuites/psxtests/ChangeLog:1.328 rtems/testsuites/psxtests/ChangeLog:1.329
--- rtems/testsuites/psxtests/ChangeLog:1.328	Wed Feb  2 09:01:25 2011
+++ rtems/testsuites/psxtests/ChangeLog	Tue Feb  8 00:37:33 2011
@@ -1,3 +1,9 @@
+2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* include/pmacros.h: Add PRIxblksize_t, PRIxblkcnt_t.
+	* configure.ac: Add AC_CHECK_SIZEOF([blksize_t]),
+	AC_CHECK_SIZEOF([blkcnt_t]).
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/testsuites/psxtests/ChangeLog:1.264.2.2 rtems/testsuites/psxtests/ChangeLog:1.264.2.3
--- rtems/testsuites/psxtests/ChangeLog:1.264.2.2	Wed Feb  2 09:18:06 2011
+++ rtems/testsuites/psxtests/ChangeLog	Tue Feb  8 00:38:03 2011
@@ -1,3 +1,9 @@
+2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* include/pmacros.h: Add PRIxblksize_t, PRIxblkcnt_t.
+	* configure.ac: Add AC_CHECK_SIZEOF([blksize_t]),
+	AC_CHECK_SIZEOF([blkcnt_t]).
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/testsuites/psxtests/configure.ac:1.80 rtems/testsuites/psxtests/configure.ac:1.81
--- rtems/testsuites/psxtests/configure.ac:1.80	Wed Feb  2 09:01:25 2011
+++ rtems/testsuites/psxtests/configure.ac	Tue Feb  8 00:37:33 2011
@@ -75,6 +75,8 @@
 
 # FIXME: We should get rid of this. It's a cludge.
 AC_CHECK_SIZEOF([off_t])
+AC_CHECK_SIZEOF([blksize_t])
+AC_CHECK_SIZEOF([blkcnt_t])
 
 # Explicitly list all Makefiles here
 AC_CONFIG_FILES([Makefile

diff -u rtems/testsuites/psxtests/configure.ac:1.61.2.2 rtems/testsuites/psxtests/configure.ac:1.61.2.3
--- rtems/testsuites/psxtests/configure.ac:1.61.2.2	Wed Feb  2 09:18:06 2011
+++ rtems/testsuites/psxtests/configure.ac	Tue Feb  8 00:38:03 2011
@@ -55,6 +55,8 @@
 
 # FIXME: We should get rid of this. It's a cludge.
 AC_CHECK_SIZEOF([off_t])
+AC_CHECK_SIZEOF([blksize_t])
+AC_CHECK_SIZEOF([blkcnt_t])
 
 # Explicitly list all Makefiles here
 AC_CONFIG_FILES([Makefile

diff -u rtems/testsuites/psxtests/include/pmacros.h:1.12 rtems/testsuites/psxtests/include/pmacros.h:1.13
--- rtems/testsuites/psxtests/include/pmacros.h:1.12	Sat May 29 00:31:46 2010
+++ rtems/testsuites/psxtests/include/pmacros.h	Tue Feb  8 00:37:33 2011
@@ -101,6 +101,26 @@
 #error "unsupported size of off_t"
 #endif
 
+#if SIZEOF_BLKSIZE_T == 8
+#define PRIxblksize_t PRIx64
+#elif SIZEOF_BLKSIZE_T == 4
+#define PRIxblksize_t PRIx32
+#else
+/* Warn and fall back to "long" */
+#warning "unsupported size of blksize_t"
+#define PRIxblksize_t "lx"
+#endif
+
+#if SIZEOF_BLKSIZE_T == 8
+#define PRIxblkcnt_t PRIx64
+#elif SIZEOF_BLKSIZE_T == 4
+#define PRIxblkcnt_t PRIx32
+#else
+/* Warn and fall back to "long" */
+#warning "unsupported size of blkcnt_t"
+#define PRIxblkcnt_t "lx"
+#endif
+
 #endif
 
 /* end of file */

diff -u rtems/testsuites/psxtests/include/pmacros.h:1.12 rtems/testsuites/psxtests/include/pmacros.h:1.12.2.1
--- rtems/testsuites/psxtests/include/pmacros.h:1.12	Sat May 29 00:31:46 2010
+++ rtems/testsuites/psxtests/include/pmacros.h	Tue Feb  8 00:38:03 2011
@@ -101,6 +101,26 @@
 #error "unsupported size of off_t"
 #endif
 
+#if SIZEOF_BLKSIZE_T == 8
+#define PRIxblksize_t PRIx64
+#elif SIZEOF_BLKSIZE_T == 4
+#define PRIxblksize_t PRIx32
+#else
+/* Warn and fall back to "long" */
+#warning "unsupported size of blksize_t"
+#define PRIxblksize_t "lx"
+#endif
+
+#if SIZEOF_BLKSIZE_T == 8
+#define PRIxblkcnt_t PRIx64
+#elif SIZEOF_BLKSIZE_T == 4
+#define PRIxblkcnt_t PRIx32
+#else
+/* Warn and fall back to "long" */
+#warning "unsupported size of blkcnt_t"
+#define PRIxblkcnt_t "lx"
+#endif
+
 #endif
 
 /* end of file */


 *ralf* (on branch rtems-4-10-branch):
2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>

	* support/include/tmacros.h: Remove PRIxblksize_t, PRIxblkcnt_t.

M  1.176  testsuites/ChangeLog
M 1.164.2.4  testsuites/ChangeLog
M   1.55  testsuites/support/include/tmacros.h
M 1.54.2.1  testsuites/support/include/tmacros.h

diff -u rtems/testsuites/ChangeLog:1.175 rtems/testsuites/ChangeLog:1.176
--- rtems/testsuites/ChangeLog:1.175	Wed Feb  2 09:01:19 2011
+++ rtems/testsuites/ChangeLog	Tue Feb  8 00:39:57 2011
@@ -1,3 +1,7 @@
+2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* support/include/tmacros.h: Remove PRIxblksize_t, PRIxblkcnt_t.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/testsuites/ChangeLog:1.164.2.3 rtems/testsuites/ChangeLog:1.164.2.4
--- rtems/testsuites/ChangeLog:1.164.2.3	Wed Feb  2 09:17:57 2011
+++ rtems/testsuites/ChangeLog	Tue Feb  8 00:40:11 2011
@@ -1,3 +1,7 @@
+2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* support/include/tmacros.h: Remove PRIxblksize_t, PRIxblkcnt_t.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/testsuites/support/include/tmacros.h:1.54 rtems/testsuites/support/include/tmacros.h:1.55
--- rtems/testsuites/support/include/tmacros.h:1.54	Sat May 29 00:29:33 2010
+++ rtems/testsuites/support/include/tmacros.h	Tue Feb  8 00:39:57 2011
@@ -304,14 +304,6 @@
 /* newlib's ino_t is a typedef to "unsigned long" */
 #define PRIxino_t "lx"
 
-/* IEEE Std 1003.1-2008 defines a type blksize_t,
- * newlib currently doesn't have this type, but uses "long" */
-#define PRIxblksize_t "lx"
-
-/* IEEE Std 1003.1-2008 defines a type blkcnt_t,
- * newlib currently doesn't have this type, but uses "long" */
-#define PRIxblkcnt_t "lx"
-
 #ifdef __cplusplus
 }
 #endif

diff -u rtems/testsuites/support/include/tmacros.h:1.54 rtems/testsuites/support/include/tmacros.h:1.54.2.1
--- rtems/testsuites/support/include/tmacros.h:1.54	Sat May 29 00:29:33 2010
+++ rtems/testsuites/support/include/tmacros.h	Tue Feb  8 00:40:11 2011
@@ -304,14 +304,6 @@
 /* newlib's ino_t is a typedef to "unsigned long" */
 #define PRIxino_t "lx"
 
-/* IEEE Std 1003.1-2008 defines a type blksize_t,
- * newlib currently doesn't have this type, but uses "long" */
-#define PRIxblksize_t "lx"
-
-/* IEEE Std 1003.1-2008 defines a type blkcnt_t,
- * newlib currently doesn't have this type, but uses "long" */
-#define PRIxblkcnt_t "lx"
-
 #ifdef __cplusplus
 }
 #endif



--

Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110208/d1cdb54a/attachment.html>


More information about the vc mailing list