change log for rtems (2011-09-27)
rtems-vc at rtems.org
rtems-vc at rtems.org
Tue Sep 27 10:10:34 UTC 2011
*sh*:
2011-09-28 Sebastian Huber <sebastian.huber at embedded-brains.de>
PR 1914/cpukit
* rtems/score/cpu.h: Select timestamp implementation.
M 1.133 cpukit/score/cpu/arm/ChangeLog
M 1.50 cpukit/score/cpu/arm/rtems/score/cpu.h
diff -u rtems/cpukit/score/cpu/arm/ChangeLog:1.132 rtems/cpukit/score/cpu/arm/ChangeLog:1.133
--- rtems/cpukit/score/cpu/arm/ChangeLog:1.132 Sat Sep 24 07:56:50 2011
+++ rtems/cpukit/score/cpu/arm/ChangeLog Tue Sep 27 04:14:03 2011
@@ -1,3 +1,8 @@
+2011-09-28 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-09-24 Sebastian Huber <sebastian.huber at embedded-brains.de>
* rtems/score/armv7m.h, armv7m-context-initialize.c,
diff -u rtems/cpukit/score/cpu/arm/rtems/score/cpu.h:1.49 rtems/cpukit/score/cpu/arm/rtems/score/cpu.h:1.50
--- rtems/cpukit/score/cpu/arm/rtems/score/cpu.h:1.49 Sat Sep 24 07:56:51 2011
+++ rtems/cpukit/score/cpu/arm/rtems/score/cpu.h Tue Sep 27 04:14:03 2011
@@ -151,6 +151,8 @@
/* XXX Why 32? */
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (32)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* The interrupt mask disables only normal interrupts (IRQ).
*
*sh*:
Typo.
M 1.134 cpukit/score/cpu/arm/ChangeLog
diff -u rtems/cpukit/score/cpu/arm/ChangeLog:1.133 rtems/cpukit/score/cpu/arm/ChangeLog:1.134
--- rtems/cpukit/score/cpu/arm/ChangeLog:1.133 Tue Sep 27 04:14:03 2011
+++ rtems/cpukit/score/cpu/arm/ChangeLog Tue Sep 27 04:14:46 2011
@@ -1,4 +1,4 @@
-2011-09-28 Sebastian Huber <sebastian.huber at embedded-brains.de>
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
PR 1914/cpukit
* rtems/score/cpu.h: Select timestamp implementation.
*sh*:
2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
PR 1914/cpukit
* rtems/score/cpu.h: Select timestamp implementation.
M 1.59 cpukit/score/cpu/avr/ChangeLog
M 1.34 cpukit/score/cpu/avr/rtems/score/cpu.h
M 1.46 cpukit/score/cpu/bfin/ChangeLog
M 1.27 cpukit/score/cpu/bfin/rtems/score/cpu.h
M 1.103 cpukit/score/cpu/h8300/ChangeLog
M 1.46 cpukit/score/cpu/h8300/rtems/score/cpu.h
M 1.106 cpukit/score/cpu/i386/ChangeLog
M 1.39 cpukit/score/cpu/i386/rtems/score/cpu.h
M 1.24 cpukit/score/cpu/lm32/ChangeLog
M 1.14 cpukit/score/cpu/lm32/rtems/score/cpu.h
M 1.20 cpukit/score/cpu/m32c/ChangeLog
M 1.13 cpukit/score/cpu/m32c/rtems/score/cpu.h
M 1.14 cpukit/score/cpu/m32r/ChangeLog
M 1.9 cpukit/score/cpu/m32r/rtems/score/cpu.h
M 1.129 cpukit/score/cpu/m68k/ChangeLog
M 1.47 cpukit/score/cpu/m68k/rtems/score/cpu.h
M 1.149 cpukit/score/cpu/mips/ChangeLog
M 1.62 cpukit/score/cpu/mips/rtems/score/cpu.h
M 1.43 cpukit/score/cpu/nios2/ChangeLog
M 1.26 cpukit/score/cpu/nios2/rtems/score/cpu.h
M 1.169 cpukit/score/cpu/powerpc/ChangeLog
M 1.48 cpukit/score/cpu/powerpc/rtems/score/cpu.h
M 1.102 cpukit/score/cpu/sh/ChangeLog
M 1.37 cpukit/score/cpu/sh/rtems/score/cpu.h
M 1.106 cpukit/score/cpu/sparc/ChangeLog
M 1.42 cpukit/score/cpu/sparc/rtems/score/cpu.h
M 1.10 cpukit/score/cpu/sparc64/ChangeLog
M 1.6 cpukit/score/cpu/sparc64/rtems/score/cpu.h
diff -u rtems/cpukit/score/cpu/avr/ChangeLog:1.58 rtems/cpukit/score/cpu/avr/ChangeLog:1.59
--- rtems/cpukit/score/cpu/avr/ChangeLog:1.58 Sun Jul 24 17:48:36 2011
+++ rtems/cpukit/score/cpu/avr/ChangeLog Tue Sep 27 04:16:05 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c, cpu_asm.S, rtems/score/cpu.h: Remove /*PAGE markers which were
diff -u rtems/cpukit/score/cpu/avr/rtems/score/cpu.h:1.33 rtems/cpukit/score/cpu/avr/rtems/score/cpu.h:1.34
--- rtems/cpukit/score/cpu/avr/rtems/score/cpu.h:1.33 Sun Jul 24 17:48:36 2011
+++ rtems/cpukit/score/cpu/avr/rtems/score/cpu.h Tue Sep 27 04:16:06 2011
@@ -348,6 +348,8 @@
#define CPU_STRUCTURE_ALIGNMENT
+#define CPU_TIMESTAMP_USE_STRUCT_TIMESPEC TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/bfin/ChangeLog:1.45 rtems/cpukit/score/cpu/bfin/ChangeLog:1.46
--- rtems/cpukit/score/cpu/bfin/ChangeLog:1.45 Sun Jul 24 17:49:03 2011
+++ rtems/cpukit/score/cpu/bfin/ChangeLog Tue Sep 27 04:16:20 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/bfin/rtems/score/cpu.h:1.26 rtems/cpukit/score/cpu/bfin/rtems/score/cpu.h:1.27
--- rtems/cpukit/score/cpu/bfin/rtems/score/cpu.h:1.26 Wed Apr 20 15:19:08 2011
+++ rtems/cpukit/score/cpu/bfin/rtems/score/cpu.h Tue Sep 27 04:16:20 2011
@@ -356,6 +356,8 @@
*/
#define CPU_STRUCTURE_ALIGNMENT
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/**
* @defgroup CPUEndian Processor Dependent Endianness Support
*
diff -u rtems/cpukit/score/cpu/h8300/ChangeLog:1.102 rtems/cpukit/score/cpu/h8300/ChangeLog:1.103
--- rtems/cpukit/score/cpu/h8300/ChangeLog:1.102 Sun Jul 24 17:49:25 2011
+++ rtems/cpukit/score/cpu/h8300/ChangeLog Tue Sep 27 04:16:42 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/h8300/rtems/score/cpu.h:1.45 rtems/cpukit/score/cpu/h8300/rtems/score/cpu.h:1.46
--- rtems/cpukit/score/cpu/h8300/rtems/score/cpu.h:1.45 Fri Feb 11 03:13:08 2011
+++ rtems/cpukit/score/cpu/h8300/rtems/score/cpu.h Tue Sep 27 04:16:42 2011
@@ -320,6 +320,8 @@
#define CPU_STRUCTURE_ALIGNMENT
+#define CPU_TIMESTAMP_USE_STRUCT_TIMESPEC TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/i386/ChangeLog:1.105 rtems/cpukit/score/cpu/i386/ChangeLog:1.106
--- rtems/cpukit/score/cpu/i386/ChangeLog:1.105 Sun Jul 24 17:49:53 2011
+++ rtems/cpukit/score/cpu/i386/ChangeLog Tue Sep 27 04:16:51 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c, cpu_asm.S: Remove /*PAGE markers which were interpreted by a
diff -u rtems/cpukit/score/cpu/i386/rtems/score/cpu.h:1.38 rtems/cpukit/score/cpu/i386/rtems/score/cpu.h:1.39
--- rtems/cpukit/score/cpu/i386/rtems/score/cpu.h:1.38 Wed Mar 16 15:05:05 2011
+++ rtems/cpukit/score/cpu/i386/rtems/score/cpu.h Tue Sep 27 04:16:51 2011
@@ -85,6 +85,8 @@
#define CPU_STACK_GROWS_UP FALSE
#define CPU_STRUCTURE_ALIGNMENT
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Does this port provide a CPU dependent IDLE task implementation?
*
diff -u rtems/cpukit/score/cpu/lm32/ChangeLog:1.23 rtems/cpukit/score/cpu/lm32/ChangeLog:1.24
--- rtems/cpukit/score/cpu/lm32/ChangeLog:1.23 Thu Aug 18 01:45:35 2011
+++ rtems/cpukit/score/cpu/lm32/ChangeLog Tue Sep 27 04:17:01 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-08-18 Sebastien Bourdeauducq <sebastien.bourdeauducq at gmail.com>
PR 1868/lm32
diff -u rtems/cpukit/score/cpu/lm32/rtems/score/cpu.h:1.13 rtems/cpukit/score/cpu/lm32/rtems/score/cpu.h:1.14
--- rtems/cpukit/score/cpu/lm32/rtems/score/cpu.h:1.13 Thu Oct 21 17:12:33 2010
+++ rtems/cpukit/score/cpu/lm32/rtems/score/cpu.h Tue Sep 27 04:17:02 2011
@@ -351,6 +351,8 @@
*/
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (8)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/**
* @defgroup CPUEndian Processor Dependent Endianness Support
*
diff -u rtems/cpukit/score/cpu/m32c/ChangeLog:1.19 rtems/cpukit/score/cpu/m32c/ChangeLog:1.20
--- rtems/cpukit/score/cpu/m32c/ChangeLog:1.19 Sun Jul 24 17:50:43 2011
+++ rtems/cpukit/score/cpu/m32c/ChangeLog Tue Sep 27 04:17:21 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/m32c/rtems/score/cpu.h:1.12 rtems/cpukit/score/cpu/m32c/rtems/score/cpu.h:1.13
--- rtems/cpukit/score/cpu/m32c/rtems/score/cpu.h:1.12 Fri Feb 11 03:20:50 2011
+++ rtems/cpukit/score/cpu/m32c/rtems/score/cpu.h Tue Sep 27 04:17:22 2011
@@ -359,6 +359,7 @@
*/
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (2)))
+#define CPU_TIMESTAMP_USE_STRUCT_TIMESPEC TRUE
/**
* @defgroup CPUEndian Processor Dependent Endianness Support
diff -u rtems/cpukit/score/cpu/m32r/ChangeLog:1.13 rtems/cpukit/score/cpu/m32r/ChangeLog:1.14
--- rtems/cpukit/score/cpu/m32r/ChangeLog:1.13 Sun Jul 24 17:51:09 2011
+++ rtems/cpukit/score/cpu/m32r/ChangeLog Tue Sep 27 04:17:11 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/m32r/rtems/score/cpu.h:1.8 rtems/cpukit/score/cpu/m32r/rtems/score/cpu.h:1.9
--- rtems/cpukit/score/cpu/m32r/rtems/score/cpu.h:1.8 Thu Oct 21 17:13:20 2010
+++ rtems/cpukit/score/cpu/m32r/rtems/score/cpu.h Tue Sep 27 04:17:11 2011
@@ -355,6 +355,8 @@
*/
#define CPU_STRUCTURE_ALIGNMENT
+#define CPU_TIMESTAMP_USE_STRUCT_TIMESPEC TRUE
+
/**
* @defgroup CPUEndian Processor Dependent Endianness Support
*
diff -u rtems/cpukit/score/cpu/m68k/ChangeLog:1.128 rtems/cpukit/score/cpu/m68k/ChangeLog:1.129
--- rtems/cpukit/score/cpu/m68k/ChangeLog:1.128 Sun Jul 24 17:51:36 2011
+++ rtems/cpukit/score/cpu/m68k/ChangeLog Tue Sep 27 04:18:19 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c, cpu_asm.S: Remove /*PAGE markers which were interpreted by a
diff -u rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.46 rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.47
--- rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h:1.46 Thu Jul 21 08:18:30 2011
+++ rtems/cpukit/score/cpu/m68k/rtems/score/cpu.h Tue Sep 27 04:18:19 2011
@@ -102,6 +102,8 @@
#define CPU_STACK_GROWS_UP FALSE
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (4)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/mips/ChangeLog:1.148 rtems/cpukit/score/cpu/mips/ChangeLog:1.149
--- rtems/cpukit/score/cpu/mips/ChangeLog:1.148 Sun Jul 24 18:43:04 2011
+++ rtems/cpukit/score/cpu/mips/ChangeLog Tue Sep 27 04:17:29 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/mips/rtems/score/cpu.h:1.61 rtems/cpukit/score/cpu/mips/rtems/score/cpu.h:1.62
--- rtems/cpukit/score/cpu/mips/rtems/score/cpu.h:1.61 Thu Oct 21 17:13:40 2010
+++ rtems/cpukit/score/cpu/mips/rtems/score/cpu.h Tue Sep 27 04:17:29 2011
@@ -309,6 +309,8 @@
#define CPU_STRUCTURE_ALIGNMENT
#endif
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/nios2/ChangeLog:1.42 rtems/cpukit/score/cpu/nios2/ChangeLog:1.43
--- rtems/cpukit/score/cpu/nios2/ChangeLog:1.42 Fri Sep 16 05:25:22 2011
+++ rtems/cpukit/score/cpu/nios2/ChangeLog Tue Sep 27 04:18:25 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-09-16 Sebastian Huber <sebastian.huber at embedded-brains.de>
* nios2-eic-il-low-level.S, nios2-eic-rsie-low-level.S: New files.
diff -u rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.25 rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.26
--- rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.25 Fri Sep 16 05:25:22 2011
+++ rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h Tue Sep 27 04:18:25 2011
@@ -67,6 +67,8 @@
#define CPU_STRUCTURE_ALIGNMENT __attribute__((section(".sdata"), aligned(32)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
diff -u rtems/cpukit/score/cpu/powerpc/ChangeLog:1.168 rtems/cpukit/score/cpu/powerpc/ChangeLog:1.169
--- rtems/cpukit/score/cpu/powerpc/ChangeLog:1.168 Tue Aug 30 09:05:50 2011
+++ rtems/cpukit/score/cpu/powerpc/ChangeLog Tue Sep 27 04:17:37 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-08-30 Peter Dufault <dufault at hda.com>
* rtems/score/cpu.h: Add more context access functionality. Needed to
diff -u rtems/cpukit/score/cpu/powerpc/rtems/score/cpu.h:1.47 rtems/cpukit/score/cpu/powerpc/rtems/score/cpu.h:1.48
--- rtems/cpukit/score/cpu/powerpc/rtems/score/cpu.h:1.47 Tue Aug 30 09:05:50 2011
+++ rtems/cpukit/score/cpu/powerpc/rtems/score/cpu.h Tue Sep 27 04:17:37 2011
@@ -144,6 +144,8 @@
#define CPU_STRUCTURE_ALIGNMENT \
__attribute__ ((aligned (PPC_STRUCTURE_ALIGNMENT)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/sh/ChangeLog:1.101 rtems/cpukit/score/cpu/sh/ChangeLog:1.102
--- rtems/cpukit/score/cpu/sh/ChangeLog:1.101 Sun Jul 24 18:43:13 2011
+++ rtems/cpukit/score/cpu/sh/ChangeLog Tue Sep 27 04:17:46 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/sh/rtems/score/cpu.h:1.36 rtems/cpukit/score/cpu/sh/rtems/score/cpu.h:1.37
--- rtems/cpukit/score/cpu/sh/rtems/score/cpu.h:1.36 Fri Feb 11 02:56:10 2011
+++ rtems/cpukit/score/cpu/sh/rtems/score/cpu.h Tue Sep 27 04:17:46 2011
@@ -273,6 +273,8 @@
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned(16)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/sparc/ChangeLog:1.105 rtems/cpukit/score/cpu/sparc/ChangeLog:1.106
--- rtems/cpukit/score/cpu/sparc/ChangeLog:1.105 Sun Jul 24 18:43:17 2011
+++ rtems/cpukit/score/cpu/sparc/ChangeLog Tue Sep 27 04:17:55 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/sparc/rtems/score/cpu.h:1.41 rtems/cpukit/score/cpu/sparc/rtems/score/cpu.h:1.42
--- rtems/cpukit/score/cpu/sparc/rtems/score/cpu.h:1.41 Tue Jun 21 17:12:10 2011
+++ rtems/cpukit/score/cpu/sparc/rtems/score/cpu.h Tue Sep 27 04:17:55 2011
@@ -209,6 +209,8 @@
*/
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (16)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/**
* Define what is required to specify how the network to host conversion
* routines are handled.
diff -u rtems/cpukit/score/cpu/sparc64/ChangeLog:1.9 rtems/cpukit/score/cpu/sparc64/ChangeLog:1.10
--- rtems/cpukit/score/cpu/sparc64/ChangeLog:1.9 Sun Jul 24 18:43:20 2011
+++ rtems/cpukit/score/cpu/sparc64/ChangeLog Tue Sep 27 04:18:04 2011
@@ -1,3 +1,8 @@
+2011-09-27 Sebastian Huber <sebastian.huber at embedded-brains.de>
+
+ PR 1914/cpukit
+ * rtems/score/cpu.h: Select timestamp implementation.
+
2011-07-24 Joel Sherrill <joel.sherrill at oarcorp.com>
* cpu.c: Remove /*PAGE markers which were interpreted by a long dead
diff -u rtems/cpukit/score/cpu/sparc64/rtems/score/cpu.h:1.5 rtems/cpukit/score/cpu/sparc64/rtems/score/cpu.h:1.6
--- rtems/cpukit/score/cpu/sparc64/rtems/score/cpu.h:1.5 Fri Feb 11 03:25:21 2011
+++ rtems/cpukit/score/cpu/sparc64/rtems/score/cpu.h Tue Sep 27 04:18:05 2011
@@ -202,6 +202,8 @@
#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned (16)))
+#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
+
/*
* Define what is required to specify how the network to host conversion
* routines are handled.
--
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/20110927/542d07af/attachment.html>
More information about the vc
mailing list