<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-08-10)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>sh</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-08-10 Sebastian Huber <sebastian.huber@embedded-brains.de>

        * rtems/score/cpu.h, cpu.c: Removed superfluous functions.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/cpu/nios2/ChangeLog.diff?r1=text&tr1=1.31&r2=text&tr2=1.32&diff_format=h">M</a></td><td width='1%'>1.32</td><td width='100%'>cpukit/score/cpu/nios2/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/cpu/nios2/cpu.c.diff?r1=text&tr1=1.13&r2=text&tr2=1.14&diff_format=h">M</a></td><td width='1%'>1.14</td><td width='100%'>cpukit/score/cpu/nios2/cpu.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h.diff?r1=text&tr1=1.18&r2=text&tr2=1.19&diff_format=h">M</a></td><td width='1%'>1.19</td><td width='100%'>cpukit/score/cpu/nios2/rtems/score/cpu.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/score/cpu/nios2/ChangeLog:1.31 rtems/cpukit/score/cpu/nios2/ChangeLog:1.32
--- rtems/cpukit/score/cpu/nios2/ChangeLog:1.31 Tue Aug  9 06:11:30 2011
+++ rtems/cpukit/score/cpu/nios2/ChangeLog      Wed Aug 10 09:10:09 2011
</font><font color='#997700'>@@ -1,3 +1,7 @@
</font><font color='#000088'>+2011-08-10    Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+       * rtems/score/cpu.h, cpu.c: Removed superfluous functions.
+
</font> 2011-08-09        Sebastian Huber <sebastian.huber@embedded-brains.de>
 
        * nios2-iic-low-level.S: New file.

<font color='#006600'>diff -u rtems/cpukit/score/cpu/nios2/cpu.c:1.13 rtems/cpukit/score/cpu/nios2/cpu.c:1.14
--- rtems/cpukit/score/cpu/nios2/cpu.c:1.13     Sun Jul 24 18:43:07 2011
+++ rtems/cpukit/score/cpu/nios2/cpu.c  Wed Aug 10 09:10:09 2011
</font><font color='#997700'>@@ -121,55 +121,3 @@
</font> 
     _ISR_Vector_table[ vector ] = new_handler;
 }
<font color='#880000'>-
-/*
- *  _CPU_Install_interrupt_stack
- *
- *  NO_CPU Specific Information:
- *
- *  XXX document implementation including references if appropriate
- */
-
-void _CPU_Install_interrupt_stack( void )
-{
-}
-
-/*
- *  _CPU_Thread_Idle_body
- *
- *  NOTES:
- *
- *  1. This is the same as the regular CPU independent algorithm.
- *
- *  2. If you implement this using a "halt", "idle", or "shutdown"
- *     instruction, then don't forget to put it in an infinite loop.
- *
- *  3. Be warned. Some processors with onboard DMA have been known
- *     to stop the DMA if the CPU were put in IDLE mode.  This might
- *     also be a problem with other on-chip peripherals.  So use this
- *     hook with caution.
- *
- *  NO_CPU Specific Information:
- *
- *  XXX document implementation including references if appropriate
- */
-
-void *_CPU_Thread_Idle_body( uintptr_t ignored )
-{
-#if 1
-  for(;;);
-#else
-  for(;;)
-  {
-    uint32_t st = __builtin_rdctl(0); /* read status  register */
-
-    /* Differentiate between IRQ off and on (for debugging) */
-    if(st & 1)
-      for(;;);
-    else
-      for(;;);
-
-    /* insert your "halt" instruction here */ ;
-  }
-#endif
-}
</font>
<font color='#006600'>diff -u rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.18 rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.19
--- rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h:1.18 Tue Aug  9 05:28:09 2011
+++ rtems/cpukit/score/cpu/nios2/rtems/score/cpu.h      Wed Aug 10 09:10:10 2011
</font><font color='#997700'>@@ -310,7 +310,7 @@
</font>  *
  *  XXX document implementation including references if appropriate
  */
<font color='#880000'>-#define CPU_PROVIDES_IDLE_THREAD_BODY    TRUE
</font><font color='#000088'>+#define CPU_PROVIDES_IDLE_THREAD_BODY    FALSE
</font> 
 /**
  *  Does the stack grow up (toward higher addresses) or down
<font color='#997700'>@@ -1155,19 +1155,6 @@
</font> );
 
 /**
<font color='#880000'>- *  @ingroup CPUInterrupt
- *  This routine installs the hardware interrupt stack pointer.
- *
- *  @note  It need only be provided if @ref CPU_HAS_HARDWARE_INTERRUPT_STACK
- *         is TRUE.
- *
- *  Port Specific Information:
- *
- *  XXX document implementation including references if appropriate
- */
-void _CPU_Install_interrupt_stack( void );
-
-/**
</font>  *  This routine is the CPU dependent IDLE thread body.
  *
  *  @note  It need only be provided if @ref CPU_PROVIDES_IDLE_THREAD_BODY
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>