<!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-07-15)</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>jennifer</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-07-15 Jennifer Averett <Jennifer.Averett@OARcorp.com>

        * score/Makefile.am, score/preinstall.am,
        score/include/rtems/score/isr.h, score/include/rtems/score/percpu.h:
        Split isrlevel into its own file to avoid a circular dependancy in
        smp code.
        * score/include/rtems/score/isrlevel.h: New file.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2874&r2=text&tr2=1.2875&diff_format=h">M</a></td><td width='1%'>1.2875</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/Makefile.am.diff?r1=text&tr1=1.105&r2=text&tr2=1.106&diff_format=h">M</a></td><td width='1%'>1.106</td><td width='100%'>cpukit/score/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/isr.h.diff?r1=text&tr1=1.35&r2=text&tr2=1.36&diff_format=h">M</a></td><td width='1%'>1.36</td><td width='100%'>cpukit/score/include/rtems/score/isr.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/isrlevel.h?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">cpukit/score/include/rtems/score/isrlevel.h</font></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/percpu.h.diff?r1=text&tr1=1.11&r2=text&tr2=1.12&diff_format=h">M</a></td><td width='1%'>1.12</td><td width='100%'>cpukit/score/include/rtems/score/percpu.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/preinstall.am.diff?r1=text&tr1=1.32&r2=text&tr2=1.33&diff_format=h">M</a></td><td width='1%'>1.33</td><td width='100%'>cpukit/score/preinstall.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2874 rtems/cpukit/ChangeLog:1.2875
--- rtems/cpukit/ChangeLog:1.2874       Thu Jul 14 14:22:19 2011
+++ rtems/cpukit/ChangeLog      Fri Jul 15 09:36:36 2011
</font><font color='#997700'>@@ -1,3 +1,11 @@
</font><font color='#000088'>+2011-07-15    Jennifer Averett <Jennifer.Averett@OARcorp.com>
+
+       * score/Makefile.am, score/preinstall.am,
+       score/include/rtems/score/isr.h, score/include/rtems/score/percpu.h:
+       Split isrlevel into its own file to avoid a circular dependancy in
+       smp code.
+       * score/include/rtems/score/isrlevel.h: New file.
+
</font> 2011-07-14      Gene Smith <gene.smith@siemens.com>
 
        PR 1381/networking

<font color='#006600'>diff -u rtems/cpukit/score/Makefile.am:1.105 rtems/cpukit/score/Makefile.am:1.106
--- rtems/cpukit/score/Makefile.am:1.105        Tue Jun 28 15:31:36 2011
+++ rtems/cpukit/score/Makefile.am      Fri Jul 15 09:36:36 2011
</font><font color='#997700'>@@ -33,6 +33,7 @@
</font> include_rtems_score_HEADERS += include/rtems/score/protectedheap.h
 include_rtems_score_HEADERS += include/rtems/score/interr.h
 include_rtems_score_HEADERS += include/rtems/score/isr.h
<font color='#000088'>+include_rtems_score_HEADERS += include/rtems/score/isrlevel.h
</font> include_rtems_score_HEADERS += include/rtems/score/object.h
 include_rtems_score_HEADERS += include/rtems/score/percpu.h
 include_rtems_score_HEADERS += include/rtems/score/priority.h

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/isr.h:1.35 rtems/cpukit/score/include/rtems/score/isr.h:1.36
--- rtems/cpukit/score/include/rtems/score/isr.h:1.35   Fri Jun 17 10:40:09 2011
+++ rtems/cpukit/score/include/rtems/score/isr.h        Fri Jul 15 09:36:37 2011
</font><font color='#997700'>@@ -41,12 +41,6 @@
</font> #endif
 
 /**
<font color='#880000'>- *  The following type defines the control block used to manage
- *  the interrupt level portion of the status register.
- */
-typedef uint32_t   ISR_Level;
-
-/**
</font>  *  The following type defines the type used to manage the vectors.
  */
 typedef uint32_t   ISR_Vector_number;

<font color='#006600'>diff -u /dev/null rtems/cpukit/score/include/rtems/score/isrlevel.h:1.1
--- /dev/null   Fri Jul 15 10:11:26 2011
+++ rtems/cpukit/score/include/rtems/score/isrlevel.h   Fri Jul 15 09:36:37 2011
</font><font color='#997700'>@@ -0,0 +1,43 @@
</font><font color='#000088'>+/**
+ *  @file  rtems/score/isrlevel.h
+ *
+ *  This include file defines the ISR Level type.  It exists to
+ *  simplify include dependencies.  It is part of the ISR Handler.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ *
+ *  $Id$
+ */
+
+#ifndef _RTEMS_SCORE_ISR_LEVEL_h
+#define _RTEMS_SCORE_ISR_LEVEL_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ *  @addtogroup ScoreISR ISR Handler
+ */
+/**@{*/
+
+/**
+ *  The following type defines the control block used to manage
+ *  the interrupt level portion of the status register.
+ */
+typedef uint32_t   ISR_Level;
+
+/**@}*/
+
+#ifdef __cplusplus
+}
+#endif
+#endif
+
</font>
<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/percpu.h:1.11 rtems/cpukit/score/include/rtems/score/percpu.h:1.12
--- rtems/cpukit/score/include/rtems/score/percpu.h:1.11        Fri Jun 17 10:40:09 2011
+++ rtems/cpukit/score/include/rtems/score/percpu.h     Fri Jul 15 09:36:37 2011
</font><font color='#997700'>@@ -24,6 +24,7 @@
</font> #ifdef ASM
   #include <rtems/asm.h>
 #else
<font color='#000088'>+  #include <rtems/score/isrlevel.h>
</font>   #include <rtems/score/timestamp.h>
   #if defined(RTEMS_SMP)
     #include <rtems/score/smplock.h>

<font color='#006600'>diff -u rtems/cpukit/score/preinstall.am:1.32 rtems/cpukit/score/preinstall.am:1.33
--- rtems/cpukit/score/preinstall.am:1.32       Tue May 17 14:57:12 2011
+++ rtems/cpukit/score/preinstall.am    Fri Jul 15 09:36:37 2011
</font><font color='#997700'>@@ -99,6 +99,10 @@
</font>   $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/isr.h
 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/isr.h
 
<font color='#000088'>+$(PROJECT_INCLUDE)/rtems/score/isrlevel.h: include/rtems/score/isrlevel.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
+       $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/isrlevel.h
+PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/isrlevel.h
+
</font> $(PROJECT_INCLUDE)/rtems/score/object.h: include/rtems/score/object.h $(PROJECT_INCLUDE)/rtems/score/$(dirstamp)
        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/score/object.h
 PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/score/object.h
</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>