change log for rtems (2011-12-09)

rtems-vc at rtems.org rtems-vc at rtems.org
Sat Dec 10 04:12:22 UTC 2011


 *ralf*:
2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>

	* posix/src/sigtimedwait.c: Make _POSIX_signals_Get_lowest static.

M 1.3082  cpukit/ChangeLog
M   1.19  cpukit/posix/src/sigtimedwait.c

diff -u rtems/cpukit/ChangeLog:1.3081 rtems/cpukit/ChangeLog:1.3082
--- rtems/cpukit/ChangeLog:1.3081	Fri Dec  9 12:21:16 2011
+++ rtems/cpukit/ChangeLog	Fri Dec  9 21:56:15 2011
@@ -1,3 +1,7 @@
+2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* posix/src/sigtimedwait.c: Make _POSIX_signals_Get_lowest static.
+
 2011-12-09	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	PR 1985/cpukit

diff -u rtems/cpukit/posix/src/sigtimedwait.c:1.18 rtems/cpukit/posix/src/sigtimedwait.c:1.19
--- rtems/cpukit/posix/src/sigtimedwait.c:1.18	Tue Jul 27 11:34:26 2010
+++ rtems/cpukit/posix/src/sigtimedwait.c	Fri Dec  9 21:56:16 2011
@@ -26,7 +26,7 @@
 #include <rtems/posix/time.h>
 #include <rtems/score/isr.h>
 
-int _POSIX_signals_Get_lowest(
+static int _POSIX_signals_Get_lowest(
   sigset_t   set
 )
 {


 *ralf*:
2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>

	PR 1986/libcpu
	* rtems/include/rtems/rtems/cache.h:
	Add rtems_cache_aligned_malloc decl.

M 1.3083  cpukit/ChangeLog
M   1.12  cpukit/rtems/include/rtems/rtems/cache.h

diff -u rtems/cpukit/ChangeLog:1.3082 rtems/cpukit/ChangeLog:1.3083
--- rtems/cpukit/ChangeLog:1.3082	Fri Dec  9 21:56:15 2011
+++ rtems/cpukit/ChangeLog	Fri Dec  9 22:00:30 2011
@@ -1,5 +1,11 @@
 2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>
 
+	PR 1986/libcpu
+	* rtems/include/rtems/rtems/cache.h: 
+	Add rtems_cache_aligned_malloc decl.
+
+2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
 	* posix/src/sigtimedwait.c: Make _POSIX_signals_Get_lowest static.
 
 2011-12-09	Joel Sherrill <joel.sherrill at oarcorp.com>

diff -u rtems/cpukit/rtems/include/rtems/rtems/cache.h:1.11 rtems/cpukit/rtems/include/rtems/rtems/cache.h:1.12
--- rtems/cpukit/rtems/include/rtems/rtems/cache.h:1.11	Wed Aug  5 13:17:12 2009
+++ rtems/cpukit/rtems/include/rtems/rtems/cache.h	Fri Dec  9 22:00:32 2011
@@ -147,7 +147,12 @@
  */
 void rtems_cache_disable_instruction( void );
 
-
+/**
+ *  This function is used to allocate storage that spans an
+ *  integral number of cache blocks.
+ */
+void *rtems_cache_aligned_malloc ( size_t nbytes );
+  
 #ifdef __cplusplus
 }
 #endif


 *ralf*:
2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>

	PR 1986/libcpu
	* shared/src/cache_aligned_malloc.c:
	Include <rtems/rtems/cache.h>.

M   1.34  c/src/lib/libcpu/ChangeLog
M    1.6  c/src/lib/libcpu/shared/src/cache_aligned_malloc.c

diff -u rtems/c/src/lib/libcpu/ChangeLog:1.33 rtems/c/src/lib/libcpu/ChangeLog:1.34
--- rtems/c/src/lib/libcpu/ChangeLog:1.33	Sat Jun 18 02:18:28 2011
+++ rtems/c/src/lib/libcpu/ChangeLog	Fri Dec  9 22:03:50 2011
@@ -1,3 +1,9 @@
+2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	PR 1986/libcpu
+	* shared/src/cache_aligned_malloc.c:
+	Include <rtems/rtems/cache.h>.
+
 2011-06-18	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* Makefile.am: Remove reference to non-existing file

diff -u rtems/c/src/lib/libcpu/shared/src/cache_aligned_malloc.c:1.5 rtems/c/src/lib/libcpu/shared/src/cache_aligned_malloc.c:1.6
--- rtems/c/src/lib/libcpu/shared/src/cache_aligned_malloc.c:1.5	Thu Apr 15 08:33:58 2004
+++ rtems/c/src/lib/libcpu/shared/src/cache_aligned_malloc.c	Fri Dec  9 22:03:50 2011
@@ -12,9 +12,11 @@
  *  $Id$
  */
 
+#include <stdlib.h>
+
 #include <rtems.h>
 #include <cache_.h>
-#include <stdlib.h>
+#include <rtems/rtems/cache.h>
 
 /*
  *  rtems_cache_aligned_malloc


 *ralf*:
2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>

	* shared/interrupts/vectorexceptions.c: Make
	mips_dump_exception_frame, mips_default_exception_code_handler
	static.

M  1.104  c/src/lib/libcpu/mips/ChangeLog
M   1.15  c/src/lib/libcpu/mips/shared/interrupts/vectorexceptions.c

diff -u rtems/c/src/lib/libcpu/mips/ChangeLog:1.103 rtems/c/src/lib/libcpu/mips/ChangeLog:1.104
--- rtems/c/src/lib/libcpu/mips/ChangeLog:1.103	Tue Oct 18 13:39:05 2011
+++ rtems/c/src/lib/libcpu/mips/ChangeLog	Fri Dec  9 22:07:46 2011
@@ -1,3 +1,9 @@
+2011-12-10	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* shared/interrupts/vectorexceptions.c: Make 
+	mips_dump_exception_frame, mips_default_exception_code_handler
+	static.
+
 2011-10-18	Jennifer Averett <Jennifer.Averett at OARcorp.com>
 
 	PR 1917/bsps

diff -u rtems/c/src/lib/libcpu/mips/shared/interrupts/vectorexceptions.c:1.14 rtems/c/src/lib/libcpu/mips/shared/interrupts/vectorexceptions.c:1.15
--- rtems/c/src/lib/libcpu/mips/shared/interrupts/vectorexceptions.c:1.14	Thu Jun  8 12:59:46 2006
+++ rtems/c/src/lib/libcpu/mips/shared/interrupts/vectorexceptions.c	Fri Dec  9 22:07:46 2011
@@ -67,7 +67,7 @@
   { R_EPC,"R_EPC"}, { -1, NULL }
 };
 
-void mips_dump_exception_frame( CPU_Interrupt_frame *frame )
+static void mips_dump_exception_frame( CPU_Interrupt_frame *frame )
 {
   uint32_t *frame_u32;
   int   i, j;
@@ -87,7 +87,7 @@
   printk( "\n" );
 }
 
-void mips_default_exception_code_handler( int exc, CPU_Interrupt_frame *frame )
+static void mips_default_exception_code_handler( int exc, CPU_Interrupt_frame *frame )
 {
   uint32_t sr;
   uint32_t cause;



--

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/20111209/b78390d2/attachment.html>


More information about the vc mailing list