change log for rtems (2010-06-14)

rtems-vc at rtems.org rtems-vc at rtems.org
Mon Jun 14 06:11:25 UTC 2010


 *ralf* (on branch rtems-4-10-branch):
2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>

	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
	Eliminate "uint".

M 1.2377  cpukit/ChangeLog
M 1.2346.2.9  cpukit/ChangeLog
M    1.7  cpukit/libfs/src/pipe/fifo.c
M 1.4.2.1  cpukit/libfs/src/pipe/fifo.c
M    1.5  cpukit/libfs/src/pipe/pipe.h
M 1.3.2.1  cpukit/libfs/src/pipe/pipe.h

diff -u rtems/cpukit/ChangeLog:1.2376 rtems/cpukit/ChangeLog:1.2377
--- rtems/cpukit/ChangeLog:1.2376	Sat Jun 12 22:36:58 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 00:49:43 2010
@@ -1,3 +1,8 @@
+2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
+	Eliminate "uint".
+
 2010-06-13	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* include/rtems/tar.h, libcsupport/include/tar.h: Remove.

diff -u rtems/cpukit/ChangeLog:1.2346.2.8 rtems/cpukit/ChangeLog:1.2346.2.9
--- rtems/cpukit/ChangeLog:1.2346.2.8	Sat Jun 12 22:38:52 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 00:49:55 2010
@@ -1,3 +1,8 @@
+2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
+	Eliminate "uint".
+
 2010-06-13	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* include/rtems/tar.h, libcsupport/include/tar.h: Remove.

diff -u rtems/cpukit/libfs/src/pipe/fifo.c:1.6 rtems/cpukit/libfs/src/pipe/fifo.c:1.7
--- rtems/cpukit/libfs/src/pipe/fifo.c:1.6	Sat Jun 12 12:55:13 2010
+++ rtems/cpukit/libfs/src/pipe/fifo.c	Mon Jun 14 00:49:44 2010
@@ -310,7 +310,7 @@
 )
 {
   pipe_control_t *pipe;
-  uint prevCounter;
+  unsigned int prevCounter;
   int err;
 
   err = pipe_new(pipep);
@@ -559,7 +559,7 @@
       return -EINTR;
 
     /* Return length of pipe */
-    *(uint *)buffer = pipe->Length;
+    *(unsigned int *)buffer = pipe->Length;
     PIPE_UNLOCK(pipe);
     return 0;
   }

diff -u rtems/cpukit/libfs/src/pipe/fifo.c:1.4 rtems/cpukit/libfs/src/pipe/fifo.c:1.4.2.1
--- rtems/cpukit/libfs/src/pipe/fifo.c:1.4	Thu Dec 17 14:26:08 2009
+++ rtems/cpukit/libfs/src/pipe/fifo.c	Mon Jun 14 00:49:55 2010
@@ -269,7 +269,7 @@
 )
 {
   pipe_control_t *pipe;
-  uint prevCounter;
+  unsigned int prevCounter;
   int err;
 
   err = pipe_new(pipep);
@@ -518,7 +518,7 @@
       return -EINTR;
 
     /* Return length of pipe */
-    *(uint *)buffer = pipe->Length;
+    *(unsigned int *)buffer = pipe->Length;
     PIPE_UNLOCK(pipe);
     return 0;
   }

diff -u rtems/cpukit/libfs/src/pipe/pipe.h:1.4 rtems/cpukit/libfs/src/pipe/pipe.h:1.5
--- rtems/cpukit/libfs/src/pipe/pipe.h:1.4	Tue Jun  8 05:25:46 2010
+++ rtems/cpukit/libfs/src/pipe/pipe.h	Mon Jun 14 00:49:44 2010
@@ -22,15 +22,15 @@
 /* Control block to manage each pipe */
 typedef struct pipe_control {
   char *Buffer;
-  uint Size;
-  uint Start;
-  uint Length;
-  uint Readers;
-  uint Writers;
-  uint waitingReaders;
-  uint waitingWriters;
-  uint readerCounter;     /* incremental counters */
-  uint writerCounter;     /* for differentiation of successive opens */
+  unsigned int Size;
+  unsigned int Start;
+  unsigned int Length;
+  unsigned int Readers;
+  unsigned int Writers;
+  unsigned int waitingReaders;
+  unsigned int waitingWriters;
+  unsigned int readerCounter;     /* incremental counters */
+  unsigned int writerCounter;     /* for differentiation of successive opens */
   rtems_id Semaphore;
   rtems_id readBarrier;   /* wait queues */
   rtems_id writeBarrier;

diff -u rtems/cpukit/libfs/src/pipe/pipe.h:1.3 rtems/cpukit/libfs/src/pipe/pipe.h:1.3.2.1
--- rtems/cpukit/libfs/src/pipe/pipe.h:1.3	Sun Nov 29 07:18:56 2009
+++ rtems/cpukit/libfs/src/pipe/pipe.h	Mon Jun 14 00:49:56 2010
@@ -22,15 +22,15 @@
 /* Control block to manage each pipe */
 typedef struct pipe_control {
   char *Buffer;
-  uint Size;
-  uint Start;
-  uint Length;
-  uint Readers;
-  uint Writers;
-  uint waitingReaders;
-  uint waitingWriters;
-  uint readerCounter;     /* incremental counters */
-  uint writerCounter;     /* for differentiation of successive opens */
+  unsigned int Size;
+  unsigned int Start;
+  unsigned int Length;
+  unsigned int Readers;
+  unsigned int Writers;
+  unsigned int waitingReaders;
+  unsigned int waitingWriters;
+  unsigned int readerCounter;     /* incremental counters */
+  unsigned int writerCounter;     /* for differentiation of successive opens */
   rtems_id Semaphore;
   rtems_id readBarrier;   /* wait queues */
   rtems_id writeBarrier;


 *ralf* (on branch rtems-4-10-branch):
2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>

	* libnetworking/netinet/in_pcb.c:
	Eliminate "ushort".

M 1.2378  cpukit/ChangeLog
M 1.2346.2.10  cpukit/ChangeLog
M   1.10  cpukit/libnetworking/netinet/in_pcb.c
M 1.9.2.1  cpukit/libnetworking/netinet/in_pcb.c

diff -u rtems/cpukit/ChangeLog:1.2377 rtems/cpukit/ChangeLog:1.2378
--- rtems/cpukit/ChangeLog:1.2377	Mon Jun 14 00:49:43 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 00:59:48 2010
@@ -1,5 +1,7 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* libnetworking/netinet/in_pcb.c:
+	Eliminate "ushort".
 	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
 	Eliminate "uint".
 

diff -u rtems/cpukit/ChangeLog:1.2346.2.9 rtems/cpukit/ChangeLog:1.2346.2.10
--- rtems/cpukit/ChangeLog:1.2346.2.9	Mon Jun 14 00:49:55 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 00:59:45 2010
@@ -1,5 +1,7 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* libnetworking/netinet/in_pcb.c:
+	Eliminate "ushort".
 	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
 	Eliminate "uint".
 

diff -u rtems/cpukit/libnetworking/netinet/in_pcb.c:1.9 rtems/cpukit/libnetworking/netinet/in_pcb.c:1.10
--- rtems/cpukit/libnetworking/netinet/in_pcb.c:1.9	Sun Mar 28 00:47:48 2010
+++ rtems/cpukit/libnetworking/netinet/in_pcb.c	Mon Jun 14 00:59:49 2010
@@ -206,7 +206,7 @@
 		inp->inp_laddr = sin->sin_addr;
 	}
 	if (lport == 0) {
-		ushort first, last;
+		unsigned short first, last;
 		int count;
 
 		inp->inp_flags |= INP_ANONPORT;

diff -u rtems/cpukit/libnetworking/netinet/in_pcb.c:1.9 rtems/cpukit/libnetworking/netinet/in_pcb.c:1.9.2.1
--- rtems/cpukit/libnetworking/netinet/in_pcb.c:1.9	Sun Mar 28 00:47:48 2010
+++ rtems/cpukit/libnetworking/netinet/in_pcb.c	Mon Jun 14 00:59:45 2010
@@ -206,7 +206,7 @@
 		inp->inp_laddr = sin->sin_addr;
 	}
 	if (lport == 0) {
-		ushort first, last;
+		unsigned short first, last;
 		int count;
 
 		inp->inp_flags |= INP_ANONPORT;


 *ralf* (on branch rtems-4-10-branch):
2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>

	* posix/include/rtems/posix/threadsup.h: Add extern "C".

M 1.2379  cpukit/ChangeLog
M 1.2346.2.11  cpukit/ChangeLog
M   1.30  cpukit/posix/include/rtems/posix/threadsup.h
M 1.29.2.1  cpukit/posix/include/rtems/posix/threadsup.h

diff -u rtems/cpukit/ChangeLog:1.2378 rtems/cpukit/ChangeLog:1.2379
--- rtems/cpukit/ChangeLog:1.2378	Mon Jun 14 00:59:48 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 01:03:57 2010
@@ -1,5 +1,6 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* posix/include/rtems/posix/threadsup.h: Add extern "C".
 	* libnetworking/netinet/in_pcb.c:
 	Eliminate "ushort".
 	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:

diff -u rtems/cpukit/ChangeLog:1.2346.2.10 rtems/cpukit/ChangeLog:1.2346.2.11
--- rtems/cpukit/ChangeLog:1.2346.2.10	Mon Jun 14 00:59:45 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 01:04:07 2010
@@ -1,5 +1,6 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* posix/include/rtems/posix/threadsup.h: Add extern "C".
 	* libnetworking/netinet/in_pcb.c:
 	Eliminate "ushort".
 	* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:

diff -u rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.29 rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.30
--- rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.29	Sat Oct 10 11:03:38 2009
+++ rtems/cpukit/posix/include/rtems/posix/threadsup.h	Mon Jun 14 01:03:57 2010
@@ -20,6 +20,10 @@
 #include <rtems/score/coresem.h>
 #include <rtems/score/tqdata.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /*!
  *  This defines the POSIX API support structure associated with
  *  each thread in a system with POSIX configured.
@@ -83,5 +87,9 @@
   void           *value_ptr
 );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
 /* end of include file */

diff -u rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.29 rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.29.2.1
--- rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.29	Sat Oct 10 11:03:38 2009
+++ rtems/cpukit/posix/include/rtems/posix/threadsup.h	Mon Jun 14 01:04:07 2010
@@ -20,6 +20,10 @@
 #include <rtems/score/coresem.h>
 #include <rtems/score/tqdata.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /*!
  *  This defines the POSIX API support structure associated with
  *  each thread in a system with POSIX configured.
@@ -83,5 +87,9 @@
   void           *value_ptr
 );
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif
 /* end of include file */


 *ralf* (on branch rtems-4-10-branch):
2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>

	* libnetworking/rtems/mkrootfs.h,
	posix/include/rtems/posix/pthread.h,
	score/include/rtems/score/coresem.h,
	score/include/rtems/score/priority.h,
	score/include/rtems/score/threadq.h,
	score/include/rtems/score/timestamp.h: Move 'extern "C"'.

M 1.2380  cpukit/ChangeLog
M 1.2346.2.12  cpukit/ChangeLog
M   1.10  cpukit/libnetworking/rtems/mkrootfs.h
M 1.8.4.1  cpukit/libnetworking/rtems/mkrootfs.h
M   1.29  cpukit/posix/include/rtems/posix/pthread.h
M 1.28.2.1  cpukit/posix/include/rtems/posix/pthread.h
M   1.29  cpukit/score/include/rtems/score/coresem.h
M 1.28.2.1  cpukit/score/include/rtems/score/coresem.h
M   1.26  cpukit/score/include/rtems/score/priority.h
M 1.25.2.1  cpukit/score/include/rtems/score/priority.h
M   1.29  cpukit/score/include/rtems/score/threadq.h
M 1.28.2.1  cpukit/score/include/rtems/score/threadq.h
M    1.5  cpukit/score/include/rtems/score/timestamp.h
M 1.3.2.2  cpukit/score/include/rtems/score/timestamp.h

diff -u rtems/cpukit/ChangeLog:1.2379 rtems/cpukit/ChangeLog:1.2380
--- rtems/cpukit/ChangeLog:1.2379	Mon Jun 14 01:03:57 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 01:08:50 2010
@@ -1,5 +1,11 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* libnetworking/rtems/mkrootfs.h,
+	posix/include/rtems/posix/pthread.h,
+	score/include/rtems/score/coresem.h,
+	score/include/rtems/score/priority.h,
+	score/include/rtems/score/threadq.h,
+	score/include/rtems/score/timestamp.h: Move 'extern "C"'.
 	* posix/include/rtems/posix/threadsup.h: Add extern "C".
 	* libnetworking/netinet/in_pcb.c:
 	Eliminate "ushort".

diff -u rtems/cpukit/ChangeLog:1.2346.2.11 rtems/cpukit/ChangeLog:1.2346.2.12
--- rtems/cpukit/ChangeLog:1.2346.2.11	Mon Jun 14 01:04:07 2010
+++ rtems/cpukit/ChangeLog	Mon Jun 14 01:09:07 2010
@@ -1,5 +1,11 @@
 2010-06-14	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	* libnetworking/rtems/mkrootfs.h,
+	posix/include/rtems/posix/pthread.h,
+	score/include/rtems/score/coresem.h,
+	score/include/rtems/score/priority.h,
+	score/include/rtems/score/threadq.h,
+	score/include/rtems/score/timestamp.h: Move 'extern "C"'.
 	* posix/include/rtems/posix/threadsup.h: Add extern "C".
 	* libnetworking/netinet/in_pcb.c:
 	Eliminate "ushort".

diff -u rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.9 rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.10
--- rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.9	Tue Jun  8 07:59:51 2010
+++ rtems/cpukit/libnetworking/rtems/mkrootfs.h	Mon Jun 14 01:08:40 2010
@@ -24,12 +24,12 @@
 #ifndef _RTEMS_MKROOTFS_H
 #define _RTEMS_MKROOTFS_H
 
+#include <rtems.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#include <rtems.h>
-
 /*
  *  Appends the lines to the a file. Create the file
  *  and builds the path if it does not exist.

diff -u rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.8 rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.8.4.1
--- rtems/cpukit/libnetworking/rtems/mkrootfs.h:1.8	Fri Aug  1 00:07:41 2008
+++ rtems/cpukit/libnetworking/rtems/mkrootfs.h	Mon Jun 14 01:09:11 2010
@@ -24,12 +24,12 @@
 #ifndef _RTEMS_MKROOTFS_H
 #define _RTEMS_MKROOTFS_H
 
+#include <rtems.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#include <rtems.h>
-
 /*
  *  Builds the complete path, like "mkdir -p".
  */

diff -u rtems/cpukit/posix/include/rtems/posix/pthread.h:1.28 rtems/cpukit/posix/include/rtems/posix/pthread.h:1.29
--- rtems/cpukit/posix/include/rtems/posix/pthread.h:1.28	Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/pthread.h	Mon Jun 14 01:08:40 2010
@@ -20,13 +20,13 @@
 #ifndef _RTEMS_POSIX_PTHREAD_H
 #define _RTEMS_POSIX_PTHREAD_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
 
 #include <rtems/posix/config.h>
 #include <rtems/posix/threadsup.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 /**
  *  The following sets the minimum stack size for POSIX threads.
  */

diff -u rtems/cpukit/posix/include/rtems/posix/pthread.h:1.28 rtems/cpukit/posix/include/rtems/posix/pthread.h:1.28.2.1
--- rtems/cpukit/posix/include/rtems/posix/pthread.h:1.28	Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/pthread.h	Mon Jun 14 01:09:11 2010
@@ -20,13 +20,13 @@
 #ifndef _RTEMS_POSIX_PTHREAD_H
 #define _RTEMS_POSIX_PTHREAD_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
 
 #include <rtems/posix/config.h>
 #include <rtems/posix/threadsup.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
 /**
  *  The following sets the minimum stack size for POSIX threads.
  */

diff -u rtems/cpukit/score/include/rtems/score/coresem.h:1.28 rtems/cpukit/score/include/rtems/score/coresem.h:1.29
--- rtems/cpukit/score/include/rtems/score/coresem.h:1.28	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/coresem.h	Mon Jun 14 01:08:40 2010
@@ -29,15 +29,15 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #include <rtems/score/thread.h>
 #include <rtems/score/threadq.h>
 #include <rtems/score/priority.h>
 #include <rtems/score/watchdog.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #if defined(RTEMS_POSIX_API) || defined(RTEMS_ITRON_API)
   #define RTEMS_SCORE_CORESEM_ENABLE_SEIZE_BODY
 #endif

diff -u rtems/cpukit/score/include/rtems/score/coresem.h:1.28 rtems/cpukit/score/include/rtems/score/coresem.h:1.28.2.1
--- rtems/cpukit/score/include/rtems/score/coresem.h:1.28	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/coresem.h	Mon Jun 14 01:09:11 2010
@@ -29,15 +29,15 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #include <rtems/score/thread.h>
 #include <rtems/score/threadq.h>
 #include <rtems/score/priority.h>
 #include <rtems/score/watchdog.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #if defined(RTEMS_POSIX_API) || defined(RTEMS_ITRON_API)
   #define RTEMS_SCORE_CORESEM_ENABLE_SEIZE_BODY
 #endif

diff -u rtems/cpukit/score/include/rtems/score/priority.h:1.25 rtems/cpukit/score/include/rtems/score/priority.h:1.26
--- rtems/cpukit/score/include/rtems/score/priority.h:1.25	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/priority.h	Mon Jun 14 01:08:40 2010
@@ -36,15 +36,15 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /*
  * Processor specific information.
  */
 #include <rtems/score/cpu.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  *  The following type defines the control block used to manage
  *  thread priorities.

diff -u rtems/cpukit/score/include/rtems/score/priority.h:1.25 rtems/cpukit/score/include/rtems/score/priority.h:1.25.2.1
--- rtems/cpukit/score/include/rtems/score/priority.h:1.25	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/priority.h	Mon Jun 14 01:09:11 2010
@@ -36,15 +36,15 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 /*
  * Processor specific information.
  */
 #include <rtems/score/cpu.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  *  The following type defines the control block used to manage
  *  thread priorities.

diff -u rtems/cpukit/score/include/rtems/score/threadq.h:1.28 rtems/cpukit/score/include/rtems/score/threadq.h:1.29
--- rtems/cpukit/score/include/rtems/score/threadq.h:1.28	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/threadq.h	Mon Jun 14 01:08:40 2010
@@ -27,16 +27,16 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #include <rtems/score/tqdata.h>
 
 #include <rtems/score/object.h>
 #include <rtems/score/thread.h>
 #include <rtems/score/watchdog.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  *  Constant for indefinite wait.
  */

diff -u rtems/cpukit/score/include/rtems/score/threadq.h:1.28 rtems/cpukit/score/include/rtems/score/threadq.h:1.28.2.1
--- rtems/cpukit/score/include/rtems/score/threadq.h:1.28	Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/threadq.h	Mon Jun 14 01:09:11 2010
@@ -27,16 +27,16 @@
  */
 /**@{*/
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 #include <rtems/score/tqdata.h>
 
 #include <rtems/score/object.h>
 #include <rtems/score/thread.h>
 #include <rtems/score/watchdog.h>
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /**
  *  Constant for indefinite wait.
  */

diff -u rtems/cpukit/score/include/rtems/score/timestamp.h:1.4 rtems/cpukit/score/include/rtems/score/timestamp.h:1.5
--- rtems/cpukit/score/include/rtems/score/timestamp.h:1.4	Sat Jun 12 00:56:26 2010
+++ rtems/cpukit/score/include/rtems/score/timestamp.h	Mon Jun 14 01:08:40 2010
@@ -38,12 +38,12 @@
  */
 /**@{*/
 
+#include <rtems/score/timespec.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#include <rtems/score/timespec.h>
-
 /*
  *  NOTE: Eventually each port should select what it should use!!!
  *

diff -u rtems/cpukit/score/include/rtems/score/timestamp.h:1.3.2.1 rtems/cpukit/score/include/rtems/score/timestamp.h:1.3.2.2
--- rtems/cpukit/score/include/rtems/score/timestamp.h:1.3.2.1	Sat Jun 12 00:56:33 2010
+++ rtems/cpukit/score/include/rtems/score/timestamp.h	Mon Jun 14 01:09:11 2010
@@ -38,12 +38,12 @@
  */
 /**@{*/
 
+#include <rtems/score/timespec.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-#include <rtems/score/timespec.h>
-
 /*
  *  NOTE: Eventually each port should select what it should use!!!
  *



--

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/20100614/66d68293/attachment.html>


More information about the vc mailing list