<!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-06-24)</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>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-06-24 Joel Sherrill <joel.sherrill@oarcorp.com>

        * Doxyfile.in, score/include/rtems/score/apimutex.h,
        score/include/rtems/score/basedefs.h,
        score/include/rtems/score/coremsg.h,
        score/include/rtems/score/object.h: Fix some Doxygen warnings.
</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.2859&r2=text&tr2=1.2860&diff_format=h">M</a></td><td width='1%'>1.2860</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/Doxyfile.in.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/Doxyfile.in</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/apimutex.h.diff?r1=text&tr1=1.14&r2=text&tr2=1.15&diff_format=h">M</a></td><td width='1%'>1.15</td><td width='100%'>cpukit/score/include/rtems/score/apimutex.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/basedefs.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/score/include/rtems/score/basedefs.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/coremsg.h.diff?r1=text&tr1=1.33&r2=text&tr2=1.34&diff_format=h">M</a></td><td width='1%'>1.34</td><td width='100%'>cpukit/score/include/rtems/score/coremsg.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/object.h.diff?r1=text&tr1=1.81&r2=text&tr2=1.82&diff_format=h">M</a></td><td width='1%'>1.82</td><td width='100%'>cpukit/score/include/rtems/score/object.h</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2859 rtems/cpukit/ChangeLog:1.2860
--- rtems/cpukit/ChangeLog:1.2859       Fri Jun 24 05:00:36 2011
+++ rtems/cpukit/ChangeLog      Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -1,3 +1,10 @@
</font><font color='#000088'>+2011-06-24    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * Doxyfile.in, score/include/rtems/score/apimutex.h,
+       score/include/rtems/score/basedefs.h,
+       score/include/rtems/score/coremsg.h,
+       score/include/rtems/score/object.h: Fix some Doxygen warnings.
+
</font> 2011-06-24        Arnout Vandecappelle <arnout@mind.be>
                Sebastien Bourdeauducq <sebastien@milkymist.org>
 

<font color='#006600'>diff -u rtems/cpukit/Doxyfile.in:1.6 rtems/cpukit/Doxyfile.in:1.7
--- rtems/cpukit/Doxyfile.in:1.6        Mon Jun 14 01:11:13 2010
+++ rtems/cpukit/Doxyfile.in    Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -563,7 +563,7 @@
</font> # and error messages should be written. If left blank the output is written
 # to stderr.
 
<font color='#880000'>-WARN_LOGFILE           =
</font><font color='#000088'>+WARN_LOGFILE           = warnings.log
</font> 
 #---------------------------------------------------------------------------
 # configuration options related to the input files

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/apimutex.h:1.14 rtems/cpukit/score/include/rtems/score/apimutex.h:1.15
--- rtems/cpukit/score/include/rtems/score/apimutex.h:1.14      Fri Nov 27 23:58:53 2009
+++ rtems/cpukit/score/include/rtems/score/apimutex.h   Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -98,11 +98,27 @@
</font>  * @{
  */
 
<font color='#000088'>+/**
+ *  @brief Memory Allocation Mutex
+ *
+ *  This points to the API Mutex instance used to ensure that only
+ *  one thread at a time is allocating or freeing memory.
+ */
</font> SCORE_EXTERN API_Mutex_Control *_RTEMS_Allocator_Mutex;
 
<font color='#000088'>+/**
+ *  @brief Macro to Ease Locking the Allocator Mutex
+ *
+ *  This macro makes it explicit that one is locking the allocator mutex.
+ */
</font> #define _RTEMS_Lock_allocator() \
   _API_Mutex_Lock( _RTEMS_Allocator_Mutex )
 
<font color='#000088'>+/**
+ *  @brief Macro to Ease Unlocking the Allocator Mutex
+ *
+ *  This macro makes it explicit that one is unlocking the allocator mutex.
+ */
</font> #define _RTEMS_Unlock_allocator() \
   _API_Mutex_Unlock( _RTEMS_Allocator_Mutex )
 

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/basedefs.h:1.3 rtems/cpukit/score/include/rtems/score/basedefs.h:1.4
--- rtems/cpukit/score/include/rtems/score/basedefs.h:1.3       Wed Mar 16 15:05:05 2011
+++ rtems/cpukit/score/include/rtems/score/basedefs.h   Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -31,10 +31,16 @@
</font> #endif
 
 #ifndef TRUE
<font color='#000088'>+  /**
+   *  This ensures that RTEMS has TRUE defined in all situations.
+   */
</font>   #define TRUE 1
 #endif
 
 #ifndef FALSE
<font color='#000088'>+  /**
+   *  This ensures that RTEMS has FALSE defined in all situations.
+   */
</font>   #define FALSE 0
 #endif
 
<font color='#997700'>@@ -49,11 +55,11 @@
</font>  *  referenced as "external" in every other file.
  */
 #ifdef SCORE_INIT
<font color='#880000'>-#undef  SCORE_EXTERN
-#define SCORE_EXTERN
</font><font color='#000088'>+  #undef  SCORE_EXTERN
+  #define SCORE_EXTERN
</font> #else
<font color='#880000'>-#undef  SCORE_EXTERN
-#define SCORE_EXTERN  extern
</font><font color='#000088'>+  #undef  SCORE_EXTERN
+  #define SCORE_EXTERN  extern
</font> #endif
 
 /**
<font color='#997700'>@@ -63,11 +69,11 @@
</font>  *  referenced as "external" in every other file.
  */
 #ifdef SAPI_INIT
<font color='#880000'>-#undef  SAPI_EXTERN
-#define SAPI_EXTERN
</font><font color='#000088'>+  #undef  SAPI_EXTERN
+  #define SAPI_EXTERN
</font> #else
<font color='#880000'>-#undef  SAPI_EXTERN
-#define SAPI_EXTERN  extern
</font><font color='#000088'>+  #undef  SAPI_EXTERN
+  #define SAPI_EXTERN  extern
</font> #endif
 
 /**
<font color='#997700'>@@ -77,11 +83,11 @@
</font>  *  referenced as "external" in every other file.
  */
 #ifdef RTEMS_API_INIT
<font color='#880000'>-#undef  RTEMS_EXTERN
-#define RTEMS_EXTERN
</font><font color='#000088'>+  #undef  RTEMS_EXTERN
+  #define RTEMS_EXTERN
</font> #else
<font color='#880000'>-#undef  RTEMS_EXTERN
-#define RTEMS_EXTERN  extern
</font><font color='#000088'>+  #undef  RTEMS_EXTERN
+  #define RTEMS_EXTERN  extern
</font> #endif
 
 /**
<font color='#997700'>@@ -91,11 +97,11 @@
</font>  *  referenced as "external" in every other file.
  */
 #ifdef POSIX_API_INIT
<font color='#880000'>-#undef  POSIX_EXTERN
-#define POSIX_EXTERN
</font><font color='#000088'>+  #undef  POSIX_EXTERN
+  #define POSIX_EXTERN
</font> #else
<font color='#880000'>-#undef  POSIX_EXTERN
-#define POSIX_EXTERN  extern
</font><font color='#000088'>+  #undef  POSIX_EXTERN
+  #define POSIX_EXTERN  extern
</font> #endif
 
 /**
<font color='#997700'>@@ -105,9 +111,9 @@
</font>  *  type checking with no cost in code size or execution speed.
  */
 #ifdef __GNUC__
<font color='#880000'>-#  define RTEMS_INLINE_ROUTINE static __inline__
</font><font color='#000088'>+  #define RTEMS_INLINE_ROUTINE static __inline__
</font> #else
<font color='#880000'>-#  define RTEMS_INLINE_ROUTINE static inline
</font><font color='#000088'>+  #define RTEMS_INLINE_ROUTINE static inline
</font> #endif
 
 /**

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/coremsg.h:1.33 rtems/cpukit/score/include/rtems/score/coremsg.h:1.34
--- rtems/cpukit/score/include/rtems/score/coremsg.h:1.33       Fri Jun 17 10:40:08 2011
+++ rtems/cpukit/score/include/rtems/score/coremsg.h    Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -36,14 +36,28 @@
</font> #include <rtems/score/watchdog.h>
 
 #if defined(RTEMS_POSIX_API)
<font color='#000088'>+  /**
+   *  This macro is defined when an API is enabled that requires that the
+   *  Message Queue Handler include support for priority based enqueuing
+   *  of messages.
+   */
</font>   #define RTEMS_SCORE_COREMSG_ENABLE_MESSAGE_PRIORITY
 #endif
 
 #if defined(RTEMS_POSIX_API)
<font color='#000088'>+  /**
+   *  This macro is defined when an API is enabled that requires that the
+   *  Message Queue Handler include support for notification of enqueuing
+   *  a message.
+   */
</font>   #define RTEMS_SCORE_COREMSG_ENABLE_NOTIFICATION
 #endif
 
 #if defined(RTEMS_POSIX_API)
<font color='#000088'>+  /**
+   *  This macro is defined when an API is enabled that requires the
+   *  Message Queue Handler include support for blocking send operations.
+   */
</font>   #define RTEMS_SCORE_COREMSG_ENABLE_BLOCKING_SEND
 #endif
 

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/object.h:1.81 rtems/cpukit/score/include/rtems/score/object.h:1.82
--- rtems/cpukit/score/include/rtems/score/object.h:1.81        Tue Aug 10 12:41:32 2010
+++ rtems/cpukit/score/include/rtems/score/object.h     Fri Jun 24 12:50:31 2011
</font><font color='#997700'>@@ -26,6 +26,12 @@
</font> #include <rtems/score/isr.h>
 
 #if defined(RTEMS_POSIX_API)
<font color='#000088'>+  /**
+   *  This macro is defined when an API is enabled that requires the
+   *  use of strings for object names.  Since the Classic API uses
+   *  32-bit unsigned integers and not strings, this allows us to
+   *  disable this in the smallest RTEMS configuratinos.
+   */
</font>   #define RTEMS_SCORE_OBJECT_ENABLE_STRING_NAMES
 #endif
 
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-06-24 Joel Sherrill <joel.sherrill@oarcorp.com>

        * include/rtems/bspIo.h, include/rtems/concat.h,
        include/rtems/endian.h, include/rtems/fs.h, include/rtems/irq.h,
        include/rtems/pci.h, include/rtems/userenv.h,
        libblock/include/rtems/flashdisk.h,
        libblock/include/rtems/nvdisk-sram.h,
        libblock/include/rtems/nvdisk.h, libcsupport/include/clockdrv.h,
        libcsupport/include/console.h, libcsupport/include/iosupp.h,
        libcsupport/include/spurious.h,
        libcsupport/include/motorola/mc68230.h,
        libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/error.h,
        libcsupport/include/rtems/framebuffer.h,
        libcsupport/include/rtems/gxx_wrappers.h,
        libcsupport/include/rtems/libcsupport.h,
        libcsupport/include/rtems/libio_.h,
        libcsupport/include/rtems/malloc.h,
        libcsupport/include/rtems/termiostypes.h,
        libcsupport/include/sys/statvfs.h, libcsupport/include/sys/termios.h,
        libcsupport/include/sys/utsname.h, libcsupport/include/zilog/z8036.h,
        libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h,
        libfs/src/imfs/imfs.h, libfs/src/pipe/pipe.h,
        libmisc/capture/capture-cli.h, libmisc/capture/capture.h,
        libmisc/cpuuse/cpuuse.h, libmisc/devnull/devnull.h,
        libmisc/devnull/devzero.h, libmisc/dumpbuf/dumpbuf.h,
        libmisc/fb/fb.h, libmisc/fb/mw_uid.h, libmisc/mouse/mouse_parser.h,
        libmisc/shell/shellconfig.h, libmisc/stringto/stringto.h,
        libmisc/untar/untar.h, libnetworking/memory.h, posix/include/aio.h,
        posix/include/mqueue.h, posix/include/semaphore.h,
        posix/include/rtems/posix/aio_misc.h,
        posix/include/rtems/posix/barrier.h,
        posix/include/rtems/posix/cond.h, posix/include/rtems/posix/config.h,
        posix/include/rtems/posix/key.h, posix/include/rtems/posix/mqueue.h,
        posix/include/rtems/posix/mutex.h,
        posix/include/rtems/posix/posixapi.h,
        posix/include/rtems/posix/priority.h,
        posix/include/rtems/posix/psignal.h,
        posix/include/rtems/posix/pthread.h,
        posix/include/rtems/posix/ptimer.h,
        posix/include/rtems/posix/rwlock.h,
        posix/include/rtems/posix/semaphore.h,
        posix/include/rtems/posix/sigset.h,
        posix/include/rtems/posix/spinlock.h,
        posix/include/rtems/posix/threadsup.h,
        posix/include/rtems/posix/time.h, posix/include/rtems/posix/timer.h,
        posix/inline/rtems/posix/barrier.inl,
        posix/inline/rtems/posix/cond.inl,
        posix/inline/rtems/posix/mqueue.inl,
        posix/inline/rtems/posix/mutex.inl,
        posix/inline/rtems/posix/priority.inl,
        posix/inline/rtems/posix/pthread.inl,
        posix/inline/rtems/posix/rwlock.inl,
        posix/inline/rtems/posix/semaphore.inl,
        posix/inline/rtems/posix/spinlock.inl,
        posix/inline/rtems/posix/timer.inl, rtems/mainpage.h,
        rtems/include/rtems/rtems/barrier.h,
        rtems/include/rtems/rtems/object.h,
        rtems/include/rtems/rtems/timer.h,
        rtems/inline/rtems/rtems/barrier.inl,
        rtems/inline/rtems/rtems/timer.inl,
        rtems/src/semtranslatereturncode.c, sapi/include/rtems/config.h,
        sapi/include/rtems/fatal.h, sapi/include/rtems/mptables.h,
        score/include/rtems/score/object.h,
        score/include/rtems/score/priority.h,
        score/inline/rtems/score/object.inl,
        score/inline/rtems/score/priority.inl: Add @file Doxygen directives
        and descriptions to files which originated with RTEMS. This improves
        the file list page generated by Doxygen.
</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.2860&r2=text&tr2=1.2861&diff_format=h">M</a></td><td width='1%'>1.2861</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/bspIo.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/include/rtems/bspIo.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/concat.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/include/rtems/concat.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/endian.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/include/rtems/endian.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/fs.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/include/rtems/fs.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/irq.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/include/rtems/irq.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/pci.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/include/rtems/pci.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/userenv.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/include/rtems/userenv.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/include/rtems/flashdisk.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libblock/include/rtems/flashdisk.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/include/rtems/nvdisk-sram.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libblock/include/rtems/nvdisk-sram.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/include/rtems/nvdisk.h.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/libblock/include/rtems/nvdisk.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/clockdrv.h.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>cpukit/libcsupport/include/clockdrv.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/console.h.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>cpukit/libcsupport/include/console.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/iosupp.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libcsupport/include/iosupp.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/motorola/mc68230.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libcsupport/include/motorola/mc68230.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/assoc.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/libcsupport/include/rtems/assoc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/error.h.diff?r1=text&tr1=1.12&r2=text&tr2=1.13&diff_format=h">M</a></td><td width='1%'>1.13</td><td width='100%'>cpukit/libcsupport/include/rtems/error.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/framebuffer.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libcsupport/include/rtems/framebuffer.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/gxx_wrappers.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libcsupport/include/rtems/gxx_wrappers.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/libcsupport.h.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>cpukit/libcsupport/include/rtems/libcsupport.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/libio_.h.diff?r1=text&tr1=1.40&r2=text&tr2=1.41&diff_format=h">M</a></td><td width='1%'>1.41</td><td width='100%'>cpukit/libcsupport/include/rtems/libio_.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/malloc.h.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/libcsupport/include/rtems/malloc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/termiostypes.h.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/libcsupport/include/rtems/termiostypes.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/spurious.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libcsupport/include/spurious.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/sys/statvfs.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libcsupport/include/sys/statvfs.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/sys/termios.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libcsupport/include/sys/termios.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/sys/utsname.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libcsupport/include/sys/utsname.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/zilog/z8036.h.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>cpukit/libcsupport/include/zilog/z8036.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/zilog/z8530.h.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/libcsupport/include/zilog/z8530.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/zilog/z8536.h.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/libcsupport/include/zilog/z8536.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/imfs/imfs.h.diff?r1=text&tr1=1.50&r2=text&tr2=1.51&diff_format=h">M</a></td><td width='1%'>1.51</td><td width='100%'>cpukit/libfs/src/imfs/imfs.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/pipe/pipe.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libfs/src/pipe/pipe.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/capture/capture-cli.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libmisc/capture/capture-cli.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/capture/capture.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/libmisc/capture/capture.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/cpuuse/cpuuse.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libmisc/cpuuse/cpuuse.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/devnull/devnull.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libmisc/devnull/devnull.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/devnull/devzero.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libmisc/devnull/devzero.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/dumpbuf/dumpbuf.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/libmisc/dumpbuf/dumpbuf.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/fb/fb.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/libmisc/fb/fb.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/fb/mw_uid.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libmisc/fb/mw_uid.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/mouse/mouse_parser.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/libmisc/mouse/mouse_parser.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/shell/shellconfig.h.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>cpukit/libmisc/shell/shellconfig.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/stringto/stringto.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/libmisc/stringto/stringto.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/untar/untar.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/libmisc/untar/untar.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libnetworking/memory.h.diff?r1=text&tr1=1.2&r2=text&tr2=1.3&diff_format=h">M</a></td><td width='1%'>1.3</td><td width='100%'>cpukit/libnetworking/memory.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/aio.h.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>cpukit/posix/include/aio.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/mqueue.h.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/posix/include/mqueue.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/aio_misc.h.diff?r1=text&tr1=1.6&r2=text&tr2=1.7&diff_format=h">M</a></td><td width='1%'>1.7</td><td width='100%'>cpukit/posix/include/rtems/posix/aio_misc.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/barrier.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/posix/include/rtems/posix/barrier.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/cond.h.diff?r1=text&tr1=1.23&r2=text&tr2=1.24&diff_format=h">M</a></td><td width='1%'>1.24</td><td width='100%'>cpukit/posix/include/rtems/posix/cond.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/config.h.diff?r1=text&tr1=1.21&r2=text&tr2=1.22&diff_format=h">M</a></td><td width='1%'>1.22</td><td width='100%'>cpukit/posix/include/rtems/posix/config.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/key.h.diff?r1=text&tr1=1.21&r2=text&tr2=1.22&diff_format=h">M</a></td><td width='1%'>1.22</td><td width='100%'>cpukit/posix/include/rtems/posix/key.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/mqueue.h.diff?r1=text&tr1=1.29&r2=text&tr2=1.30&diff_format=h">M</a></td><td width='1%'>1.30</td><td width='100%'>cpukit/posix/include/rtems/posix/mqueue.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/mutex.h.diff?r1=text&tr1=1.26&r2=text&tr2=1.27&diff_format=h">M</a></td><td width='1%'>1.27</td><td width='100%'>cpukit/posix/include/rtems/posix/mutex.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/posixapi.h.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>cpukit/posix/include/rtems/posix/posixapi.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/priority.h.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/posix/include/rtems/posix/priority.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/psignal.h.diff?r1=text&tr1=1.22&r2=text&tr2=1.23&diff_format=h">M</a></td><td width='1%'>1.23</td><td width='100%'>cpukit/posix/include/rtems/posix/psignal.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/pthread.h.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/posix/include/rtems/posix/pthread.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/ptimer.h.diff?r1=text&tr1=1.7&r2=text&tr2=1.8&diff_format=h">M</a></td><td width='1%'>1.8</td><td width='100%'>cpukit/posix/include/rtems/posix/ptimer.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/rwlock.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/posix/include/rtems/posix/rwlock.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/semaphore.h.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>cpukit/posix/include/rtems/posix/semaphore.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/sigset.h.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>cpukit/posix/include/rtems/posix/sigset.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/spinlock.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>cpukit/posix/include/rtems/posix/spinlock.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/threadsup.h.diff?r1=text&tr1=1.30&r2=text&tr2=1.31&diff_format=h">M</a></td><td width='1%'>1.31</td><td width='100%'>cpukit/posix/include/rtems/posix/threadsup.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/time.h.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>cpukit/posix/include/rtems/posix/time.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/rtems/posix/timer.h.diff?r1=text&tr1=1.22&r2=text&tr2=1.23&diff_format=h">M</a></td><td width='1%'>1.23</td><td width='100%'>cpukit/posix/include/rtems/posix/timer.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/include/semaphore.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/posix/include/semaphore.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/barrier.inl.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/posix/inline/rtems/posix/barrier.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/cond.inl.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/posix/inline/rtems/posix/cond.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/mqueue.inl.diff?r1=text&tr1=1.17&r2=text&tr2=1.18&diff_format=h">M</a></td><td width='1%'>1.18</td><td width='100%'>cpukit/posix/inline/rtems/posix/mqueue.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/mutex.inl.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/posix/inline/rtems/posix/mutex.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/priority.inl.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>cpukit/posix/inline/rtems/posix/priority.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/pthread.inl.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/posix/inline/rtems/posix/pthread.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/rwlock.inl.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/posix/inline/rtems/posix/rwlock.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/semaphore.inl.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>cpukit/posix/inline/rtems/posix/semaphore.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/spinlock.inl.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/posix/inline/rtems/posix/spinlock.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/posix/inline/rtems/posix/timer.inl.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/posix/inline/rtems/posix/timer.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/include/rtems/rtems/barrier.h.diff?r1=text&tr1=1.8&r2=text&tr2=1.9&diff_format=h">M</a></td><td width='1%'>1.9</td><td width='100%'>cpukit/rtems/include/rtems/rtems/barrier.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/include/rtems/rtems/object.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/rtems/include/rtems/rtems/object.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/include/rtems/rtems/timer.h.diff?r1=text&tr1=1.34&r2=text&tr2=1.35&diff_format=h">M</a></td><td width='1%'>1.35</td><td width='100%'>cpukit/rtems/include/rtems/rtems/timer.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/inline/rtems/rtems/barrier.inl.diff?r1=text&tr1=1.5&r2=text&tr2=1.6&diff_format=h">M</a></td><td width='1%'>1.6</td><td width='100%'>cpukit/rtems/inline/rtems/rtems/barrier.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/inline/rtems/rtems/timer.inl.diff?r1=text&tr1=1.16&r2=text&tr2=1.17&diff_format=h">M</a></td><td width='1%'>1.17</td><td width='100%'>cpukit/rtems/inline/rtems/rtems/timer.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/mainpage.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.5&diff_format=h">M</a></td><td width='1%'>1.5</td><td width='100%'>cpukit/rtems/mainpage.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/rtems/src/semtranslatereturncode.c.diff?r1=text&tr1=1.23&r2=text&tr2=1.24&diff_format=h">M</a></td><td width='1%'>1.24</td><td width='100%'>cpukit/rtems/src/semtranslatereturncode.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/sapi/include/rtems/config.h.diff?r1=text&tr1=1.55&r2=text&tr2=1.56&diff_format=h">M</a></td><td width='1%'>1.56</td><td width='100%'>cpukit/sapi/include/rtems/config.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/sapi/include/rtems/fatal.h.diff?r1=text&tr1=1.15&r2=text&tr2=1.16&diff_format=h">M</a></td><td width='1%'>1.16</td><td width='100%'>cpukit/sapi/include/rtems/fatal.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/sapi/include/rtems/mptables.h.diff?r1=text&tr1=1.9&r2=text&tr2=1.10&diff_format=h">M</a></td><td width='1%'>1.10</td><td width='100%'>cpukit/sapi/include/rtems/mptables.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/object.h.diff?r1=text&tr1=1.82&r2=text&tr2=1.83&diff_format=h">M</a></td><td width='1%'>1.83</td><td width='100%'>cpukit/score/include/rtems/score/object.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/priority.h.diff?r1=text&tr1=1.28&r2=text&tr2=1.29&diff_format=h">M</a></td><td width='1%'>1.29</td><td width='100%'>cpukit/score/include/rtems/score/priority.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/inline/rtems/score/object.inl.diff?r1=text&tr1=1.45&r2=text&tr2=1.46&diff_format=h">M</a></td><td width='1%'>1.46</td><td width='100%'>cpukit/score/inline/rtems/score/object.inl</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/inline/rtems/score/priority.inl.diff?r1=text&tr1=1.26&r2=text&tr2=1.27&diff_format=h">M</a></td><td width='1%'>1.27</td><td width='100%'>cpukit/score/inline/rtems/score/priority.inl</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2860 rtems/cpukit/ChangeLog:1.2861
--- rtems/cpukit/ChangeLog:1.2860       Fri Jun 24 12:50:31 2011
+++ rtems/cpukit/ChangeLog      Fri Jun 24 12:52:54 2011
</font><font color='#997700'>@@ -1,5 +1,74 @@
</font> 2011-06-24        Joel Sherrill <joel.sherrill@oarcorp.com>
 
<font color='#000088'>+   * include/rtems/bspIo.h, include/rtems/concat.h,
+       include/rtems/endian.h, include/rtems/fs.h, include/rtems/irq.h,
+       include/rtems/pci.h, include/rtems/userenv.h,
+       libblock/include/rtems/flashdisk.h,
+       libblock/include/rtems/nvdisk-sram.h,
+       libblock/include/rtems/nvdisk.h, libcsupport/include/clockdrv.h,
+       libcsupport/include/console.h, libcsupport/include/iosupp.h,
+       libcsupport/include/spurious.h,
+       libcsupport/include/motorola/mc68230.h,
+       libcsupport/include/rtems/assoc.h, libcsupport/include/rtems/error.h,
+       libcsupport/include/rtems/framebuffer.h,
+       libcsupport/include/rtems/gxx_wrappers.h,
+       libcsupport/include/rtems/libcsupport.h,
+       libcsupport/include/rtems/libio_.h,
+       libcsupport/include/rtems/malloc.h,
+       libcsupport/include/rtems/termiostypes.h,
+       libcsupport/include/sys/statvfs.h, libcsupport/include/sys/termios.h,
+       libcsupport/include/sys/utsname.h, libcsupport/include/zilog/z8036.h,
+       libcsupport/include/zilog/z8530.h, libcsupport/include/zilog/z8536.h,
+       libfs/src/imfs/imfs.h, libfs/src/pipe/pipe.h,
+       libmisc/capture/capture-cli.h, libmisc/capture/capture.h,
+       libmisc/cpuuse/cpuuse.h, libmisc/devnull/devnull.h,
+       libmisc/devnull/devzero.h, libmisc/dumpbuf/dumpbuf.h,
+       libmisc/fb/fb.h, libmisc/fb/mw_uid.h, libmisc/mouse/mouse_parser.h,
+       libmisc/shell/shellconfig.h, libmisc/stringto/stringto.h,
+       libmisc/untar/untar.h, libnetworking/memory.h, posix/include/aio.h,
+       posix/include/mqueue.h, posix/include/semaphore.h,
+       posix/include/rtems/posix/aio_misc.h,
+       posix/include/rtems/posix/barrier.h,
+       posix/include/rtems/posix/cond.h, posix/include/rtems/posix/config.h,
+       posix/include/rtems/posix/key.h, posix/include/rtems/posix/mqueue.h,
+       posix/include/rtems/posix/mutex.h,
+       posix/include/rtems/posix/posixapi.h,
+       posix/include/rtems/posix/priority.h,
+       posix/include/rtems/posix/psignal.h,
+       posix/include/rtems/posix/pthread.h,
+       posix/include/rtems/posix/ptimer.h,
+       posix/include/rtems/posix/rwlock.h,
+       posix/include/rtems/posix/semaphore.h,
+       posix/include/rtems/posix/sigset.h,
+       posix/include/rtems/posix/spinlock.h,
+       posix/include/rtems/posix/threadsup.h,
+       posix/include/rtems/posix/time.h, posix/include/rtems/posix/timer.h,
+       posix/inline/rtems/posix/barrier.inl,
+       posix/inline/rtems/posix/cond.inl,
+       posix/inline/rtems/posix/mqueue.inl,
+       posix/inline/rtems/posix/mutex.inl,
+       posix/inline/rtems/posix/priority.inl,
+       posix/inline/rtems/posix/pthread.inl,
+       posix/inline/rtems/posix/rwlock.inl,
+       posix/inline/rtems/posix/semaphore.inl,
+       posix/inline/rtems/posix/spinlock.inl,
+       posix/inline/rtems/posix/timer.inl, rtems/mainpage.h,
+       rtems/include/rtems/rtems/barrier.h,
+       rtems/include/rtems/rtems/object.h,
+       rtems/include/rtems/rtems/timer.h,
+       rtems/inline/rtems/rtems/barrier.inl,
+       rtems/inline/rtems/rtems/timer.inl,
+       rtems/src/semtranslatereturncode.c, sapi/include/rtems/config.h,
+       sapi/include/rtems/fatal.h, sapi/include/rtems/mptables.h,
+       score/include/rtems/score/object.h,
+       score/include/rtems/score/priority.h,
+       score/inline/rtems/score/object.inl,
+       score/inline/rtems/score/priority.inl: Add @file Doxygen directives
+       and descriptions to files which originated with RTEMS. This improves
+       the file list page generated by Doxygen.
+
+2011-06-24     Joel Sherrill <joel.sherrill@oarcorp.com>
+
</font>   * Doxyfile.in, score/include/rtems/score/apimutex.h,
        score/include/rtems/score/basedefs.h,
        score/include/rtems/score/coremsg.h,

<font color='#006600'>diff -u rtems/cpukit/include/rtems/bspIo.h:1.11 rtems/cpukit/include/rtems/bspIo.h:1.12
--- rtems/cpukit/include/rtems/bspIo.h:1.11     Fri Jan 28 14:24:53 2011
+++ rtems/cpukit/include/rtems/bspIo.h  Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font><font color='#880000'>-/* bspIo.h
- *
- *  This include file contains declaration of interface that
- *  will be provided by the file contained in this directory.
</font><font color='#000088'>+/**
+ * @file rtems/bspIo.h
</font>  *
<font color='#000088'>+ * This include file defines the interface to kernel print methods.
+ */
+
+/*
</font>  *  COPYRIGHT (c) 1998 valette@crf.canon.fr
<font color='#000088'>+ *  COPYRIGHT (c) 2011 On-Line Applications Research Corporation.
</font>  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at

<font color='#006600'>diff -u rtems/cpukit/include/rtems/concat.h:1.4 rtems/cpukit/include/rtems/concat.h:1.5
--- rtems/cpukit/include/rtems/concat.h:1.4     Fri Jan 28 14:24:53 2011
+++ rtems/cpukit/include/rtems/concat.h Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+/**
+ * @file rtems/concat.h
+ *
+ * This include file defines ANSI concatenation macros.
+ */
+
</font> /*
  *  Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
  *

<font color='#006600'>diff -u rtems/cpukit/include/rtems/endian.h:1.2 rtems/cpukit/include/rtems/endian.h:1.3
--- rtems/cpukit/include/rtems/endian.h:1.2     Tue May  5 07:50:43 2009
+++ rtems/cpukit/include/rtems/endian.h Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+/**
+ * @file rtems/endian.h
+ *
+ * This include file provides endian information about the target.
+ */
+
</font> /*
  *  $Id$
  */

<font color='#006600'>diff -u rtems/cpukit/include/rtems/fs.h:1.7 rtems/cpukit/include/rtems/fs.h:1.8
--- rtems/cpukit/include/rtems/fs.h:1.7 Mon May 31 08:56:36 2010
+++ rtems/cpukit/include/rtems/fs.h     Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*
- *  Some basic filesystem types
</font><font color='#000088'>+/**
+ * @file rtems/fs.h
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ * This file defines basic filesystem types
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/include/rtems/irq.h:1.5 rtems/cpukit/include/rtems/irq.h:1.6
--- rtems/cpukit/include/rtems/irq.h:1.5        Fri Jan 28 14:24:53 2011
+++ rtems/cpukit/include/rtems/irq.h    Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,8 +1,11 @@
</font><font color='#880000'>-/*
- *
- *  This include file describe the data structure and the functions implemented
- *  by rtems to write interrupt handlers.
</font><font color='#000088'>+/**
+ * @file rtems/irq.h
</font>  *
<font color='#000088'>+ * This include file describe the data structure and the functions implemented
+ * by rtems to write interrupt handlers.
+ */
+
+/*
</font>  *  CopyRight (C) 1998 valette@crf.canon.fr
  *
  *  This code is heavilly inspired by the public specification of STREAM V2

<font color='#006600'>diff -u rtems/cpukit/include/rtems/pci.h:1.18 rtems/cpukit/include/rtems/pci.h:1.19
--- rtems/cpukit/include/rtems/pci.h:1.18       Fri Dec 11 06:53:48 2009
+++ rtems/cpukit/include/rtems/pci.h    Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,6 +1,10 @@
</font><font color='#880000'>-/*
</font><font color='#000088'>+/**
+ * @file rtems/pci.h
</font>  *
<font color='#880000'>- *  PCI defines and function prototypes
</font><font color='#000088'>+ * PCI defines and function prototypes
+ */
+
+/*
</font>  *  Copyright 1994, Drew Eckhardt
  *  Copyright 1997, 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  *

<font color='#006600'>diff -u rtems/cpukit/include/rtems/userenv.h:1.6 rtems/cpukit/include/rtems/userenv.h:1.7
--- rtems/cpukit/include/rtems/userenv.h:1.6    Sun Nov 29 05:52:52 2009
+++ rtems/cpukit/include/rtems/userenv.h        Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*
- *  Libio Internal Information
</font><font color='#000088'>+/**
+ * @file rtems/userenv.h
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ * This file defines the interface for POSIX per-process environment.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libblock/include/rtems/flashdisk.h:1.6 rtems/cpukit/libblock/include/rtems/flashdisk.h:1.7
--- rtems/cpukit/libblock/include/rtems/flashdisk.h:1.6 Sun Nov 29 05:57:22 2009
+++ rtems/cpukit/libblock/include/rtems/flashdisk.h     Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,6 +1,10 @@
</font><font color='#880000'>-/*
- * flashdisk.h -- Flash disk block device implementation
</font><font color='#000088'>+/**
+ * @file rtems/flashdisk.h
</font>  *
<font color='#000088'>+ * This file defines the interface to a flash disk block device.
+ */
+
+/*
</font>  * Copyright (C) 2007 Chris Johns
  *
  * The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libblock/include/rtems/nvdisk-sram.h:1.2 rtems/cpukit/libblock/include/rtems/nvdisk-sram.h:1.3
--- rtems/cpukit/libblock/include/rtems/nvdisk-sram.h:1.2       Sun Nov 29 05:57:22 2009
+++ rtems/cpukit/libblock/include/rtems/nvdisk-sram.h   Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+/**
+ * @file rtems/nvdisk-sram.h
+ *
+ * This driver maps an NV disk to static RAM. You can use this
+ */
+
</font> /*
  *  $Id$
  *
<font color='#997700'>@@ -6,12 +12,6 @@
</font>  * Copyright 2007 Chris Johns (chrisj@rtems.org)
  */
 
<font color='#880000'>-/**
- * NV Disk Static RAM Device Driver.
- *
- * This driver maps an NV disk to static RAM. You can use this
- */
-
</font> #if !defined (_RTEMS_NVDISK_SRAM_H_)
 #define _RTEMS_NVDISK_SRAM_H_
 

<font color='#006600'>diff -u rtems/cpukit/libblock/include/rtems/nvdisk.h:1.5 rtems/cpukit/libblock/include/rtems/nvdisk.h:1.6
--- rtems/cpukit/libblock/include/rtems/nvdisk.h:1.5    Sat May 22 11:51:05 2010
+++ rtems/cpukit/libblock/include/rtems/nvdisk.h        Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,6 +1,10 @@
</font><font color='#880000'>-/*
- * nvdisk.h -- Non-volatile disk block device implementation
</font><font color='#000088'>+/**
+ * @file rtems/nvdisk.h
</font>  *
<font color='#000088'>+ * Non-volatile disk block device implementation
+ */
+
+/*
</font>  * Copyright (C) 2007 Chris Johns
  *
  * The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/clockdrv.h:1.15 rtems/cpukit/libcsupport/include/clockdrv.h:1.16
--- rtems/cpukit/libcsupport/include/clockdrv.h:1.15    Wed Feb 23 08:27:15 2011
+++ rtems/cpukit/libcsupport/include/clockdrv.h Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /**
  * @file rtems/clockdrv.h
<font color='#000088'>+ *
+ * This file describes the Clock Driver for all boards.
</font>  */
 
<font color='#880000'>-/*  clock.h
- *
- *  This file describes the Clock Driver for all boards.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/console.h:1.16 rtems/cpukit/libcsupport/include/console.h:1.17
--- rtems/cpukit/libcsupport/include/console.h:1.16     Wed Feb 23 08:27:15 2011
+++ rtems/cpukit/libcsupport/include/console.h  Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/console.h
<font color='#000088'>+ *
+ * This file describes the Console Device Driver for all boards.
+ * This driver provides support for the standard C Library.
</font>  */
 
<font color='#880000'>-/*  console.h
- *
- *  This file describes the Console Device Driver for all boards.
- *  This driver provides support for the standard C Library.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/iosupp.h:1.9 rtems/cpukit/libcsupport/include/iosupp.h:1.10
--- rtems/cpukit/libcsupport/include/iosupp.h:1.9       Fri Jan 28 02:04:27 2005
+++ rtems/cpukit/libcsupport/include/iosupp.h   Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,9 +1,11 @@
</font> /**
  * @file rtems/iosupp.h
<font color='#000088'>+ *
+ * This include file defines some special characters of interest.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/motorola/mc68230.h:1.9 rtems/cpukit/libcsupport/include/motorola/mc68230.h:1.10
--- rtems/cpukit/libcsupport/include/motorola/mc68230.h:1.9     Fri Feb 15 00:19:58 2008
+++ rtems/cpukit/libcsupport/include/motorola/mc68230.h Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,17 +1,17 @@
</font> /**
  * @file rtems/motorola/mc68230.h
<font color='#000088'>+ *
+ * Low level support code for the Motorola 68230 Parallel
+ * Interface/Timer (PIT)
</font>  */
 
 /*
<font color='#880000'>- * mc68230.h -- Low level support code for the Motorola 68230 Parallel
- *              Interface/Timer (PIT)
- *
</font>  * Modified by Doug McBride, Colorado Space Grant College
  *
  * Format taken partly from RTEMS code and mostly from Motorola IDP user's
  * manual.  RTEMS copyright information below.
  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/assoc.h:1.11 rtems/cpukit/libcsupport/include/rtems/assoc.h:1.12
--- rtems/cpukit/libcsupport/include/rtems/assoc.h:1.11 Tue Jun  2 22:38:38 2009
+++ rtems/cpukit/libcsupport/include/rtems/assoc.h      Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,13 +1,11 @@
</font> /**
  * @file rtems/assoc.h
<font color='#000088'>+ *
+ * RTEMS associativity routines.  Mainly used to convert a value from
+ * one space to another (eg: our errno's to host errno's and vice-versa)
</font>  */
 
 /*
<font color='#880000'>- *
- *  Rtems associativity routines.  Mainly used to convert a value from
- *  one space to another (eg: our errno's to host errno's and v.v)
- *
- *
</font>  *  $Id$
  */
 

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/error.h:1.12 rtems/cpukit/libcsupport/include/rtems/error.h:1.13
--- rtems/cpukit/libcsupport/include/rtems/error.h:1.12 Wed Feb 23 08:27:15 2011
+++ rtems/cpukit/libcsupport/include/rtems/error.h      Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,10 +1,10 @@
</font> /**
  * @file rtems/error.h
<font color='#000088'>+ *
+ * Defines and externs for rtems error reporting
</font>  */
 
 /*
<font color='#880000'>- *  Defines and externs for rtems error reporting
- *
</font>  *  $Id$
  */
 

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/framebuffer.h:1.3 rtems/cpukit/libcsupport/include/rtems/framebuffer.h:1.4
--- rtems/cpukit/libcsupport/include/rtems/framebuffer.h:1.3    Mon Dec 28 10:36:08 2009
+++ rtems/cpukit/libcsupport/include/rtems/framebuffer.h        Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,11 +1,11 @@
</font> /**
  * @file rtems/framebuffer.h
<font color='#000088'>+ *
+ * This file describes the Frame Buffer Device Driver for all boards.
</font>  */
 
 /*
<font color='#880000'>- *  This file describes the Frame Buffer Device Driver for all boards.
- *
- *  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/gxx_wrappers.h:1.1 rtems/cpukit/libcsupport/include/rtems/gxx_wrappers.h:1.2
--- rtems/cpukit/libcsupport/include/rtems/gxx_wrappers.h:1.1   Mon Aug 23 02:59:38 2010
+++ rtems/cpukit/libcsupport/include/rtems/gxx_wrappers.h       Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,6 +1,10 @@
</font><font color='#880000'>-/*
- *  RTEMS threads compatibility routines for libgcc2.
</font><font color='#000088'>+/**
+ * @file rtems/gxx_wrappers.h
</font>  *
<font color='#000088'>+ * RTEMS threads compatibility routines for libgcc2.
+ */
+
+/*
</font>  *  by: Rosimildo da Silva (rdasilva@connecttel.com)
  *
  *  Used ideas from:

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/libcsupport.h:1.27 rtems/cpukit/libcsupport/include/rtems/libcsupport.h:1.28
--- rtems/cpukit/libcsupport/include/rtems/libcsupport.h:1.27   Wed Feb 23 08:27:15 2011
+++ rtems/cpukit/libcsupport/include/rtems/libcsupport.h        Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/libcsupport.h
<font color='#000088'>+ *
+ * This include file contains the information regarding the
+ * RTEMS specific support for the standard C library.
</font>  */
 
<font color='#880000'>-/*  libcsupport.h
- *
- *  This include file contains the information regarding the
- *  RTEMS specific support for the standard C library.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/libio_.h:1.40 rtems/cpukit/libcsupport/include/rtems/libio_.h:1.41
--- rtems/cpukit/libcsupport/include/rtems/libio_.h:1.40        Thu Jul 15 03:46:06 2010
+++ rtems/cpukit/libcsupport/include/rtems/libio_.h     Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,11 +1,11 @@
</font> /**
  * @file rtems/libio_.h
<font color='#000088'>+ *
+ * This file is the libio internal interface.
</font>  */
 
 /*
<font color='#880000'>- *  Libio Internal Information
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/malloc.h:1.13 rtems/cpukit/libcsupport/include/rtems/malloc.h:1.14
--- rtems/cpukit/libcsupport/include/rtems/malloc.h:1.13        Fri Jun 17 09:55:26 2011
+++ rtems/cpukit/libcsupport/include/rtems/malloc.h     Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,11 +1,11 @@
</font> /**
  * @file rtems/malloc.h
<font color='#000088'>+ *
+ * This file defines the interface to RTEMS extensions to the Malloc Family.
</font>  */
 
 /*
<font color='#880000'>- *  RTEMS Malloc Extensions
- *
- *  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may in

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/termiostypes.h:1.13 rtems/cpukit/libcsupport/include/rtems/termiostypes.h:1.14
--- rtems/cpukit/libcsupport/include/rtems/termiostypes.h:1.13  Tue Sep 29 21:51:32 2009
+++ rtems/cpukit/libcsupport/include/rtems/termiostypes.h       Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,11 +1,11 @@
</font> /**
  * @file rtems/termiostypes.h
<font color='#000088'>+ *
+ * RTEMS termios device support internal data structures
</font>  */
 
 /*
<font color='#880000'>- *  RTEMS termios device support internal data structures
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/spurious.h:1.9 rtems/cpukit/libcsupport/include/spurious.h:1.10
--- rtems/cpukit/libcsupport/include/spurious.h:1.9     Wed Feb 23 08:27:15 2011
+++ rtems/cpukit/libcsupport/include/spurious.h Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /**
  * @file rtems/spurious.h
<font color='#000088'>+ *
+ * This file describes the Spurious Interrupt Driver for all boards.
</font>  */
 
<font color='#880000'>-/*  spurious.h
- *
- *  This file describes the Spurious Interrupt Driver for all boards.
- *
- *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/sys/statvfs.h:1.2 rtems/cpukit/libcsupport/include/sys/statvfs.h:1.3
--- rtems/cpukit/libcsupport/include/sys/statvfs.h:1.2  Thu Feb 24 09:48:06 2011
+++ rtems/cpukit/libcsupport/include/sys/statvfs.h      Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,3 +1,12 @@
</font><font color='#000088'>+/**
+ * @file sys/statvfs.h
+ *
+ * This include file defines the interface to the statvfs() set of
+ * API methods. The statvfs as defined by the SUS:
+ *
+ *  - http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
+ */
+
</font> /*
  *  COPYRIGHT (c) 2009 Chris Johns <chrisj@rtems.org>
  *
<font color='#997700'>@@ -7,9 +16,8 @@
</font>  *
  *  $Id$
  */
<font color='#000088'>+
</font> /*
<font color='#880000'>- * The statvfs as defined by the SUS:
- *    http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
</font>  */
 
 #ifndef _SYS_STATVFS_H_

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/sys/termios.h:1.9 rtems/cpukit/libcsupport/include/sys/termios.h:1.10
--- rtems/cpukit/libcsupport/include/sys/termios.h:1.9  Thu Sep  4 13:54:13 2003
+++ rtems/cpukit/libcsupport/include/sys/termios.h      Fri Jun 24 12:52:55 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*
- *  POSIX termios implementation for RTEMS console device driver.
</font><font color='#000088'>+/**
+ * @file sys/termios.h
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ * POSIX termios implementation for RTEMS console device driver.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/sys/utsname.h:1.6 rtems/cpukit/libcsupport/include/sys/utsname.h:1.7
--- rtems/cpukit/libcsupport/include/sys/utsname.h:1.6  Tue Aug 24 00:51:51 2010
+++ rtems/cpukit/libcsupport/include/sys/utsname.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,4 +1,16 @@
</font><font color='#880000'>-/*  sys/utsname.h
</font><font color='#000088'>+/**
+ * @file sys/utsname.h
+ *
+ * This include file defines the interface to the POSIX utsname() service.
+ */
+
+/*
+ *  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.
</font>  *
  *  $Id$
  */

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/zilog/z8036.h:1.10 rtems/cpukit/libcsupport/include/zilog/z8036.h:1.11
--- rtems/cpukit/libcsupport/include/zilog/z8036.h:1.10 Sun Nov 29 05:57:23 2009
+++ rtems/cpukit/libcsupport/include/zilog/z8036.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,15 +1,15 @@
</font> /**
  * @file rtems/zilog/z8036.h
<font color='#000088'>+ *
+ * This include file defines information related to a Zilog Z8036
+ * Counter/Timer/IO Chip.  It is a memory mapped part.
+ *
+ * @note This file shares as much as possible with the include file
+ * for the Z8536 via z8x36.h.
</font>  */
 
 /*
<font color='#880000'>- *  This include file defines information related to a Zilog Z8036
- *  Counter/Timer/IO Chip.  It is a memory mapped part.
- *
- *  NOTE: This file shares as much as possible with the include
- *        file for the Z8536 via z8x36.h.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/zilog/z8530.h:1.8 rtems/cpukit/libcsupport/include/zilog/z8530.h:1.9
--- rtems/cpukit/libcsupport/include/zilog/z8530.h:1.8  Fri Jan 28 02:04:27 2005
+++ rtems/cpukit/libcsupport/include/zilog/z8530.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/zilog/z8530.h
<font color='#000088'>+ *
+ *  This include file defines information related to a Zilog Z8530
+ *  SCC Chip.  It is a IO mapped part.
</font>  */
 
 /*
<font color='#880000'>- *  This include file defines information related to a Zilog Z8530
- *  SCC Chip.  It is a IO mapped part.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/zilog/z8536.h:1.8 rtems/cpukit/libcsupport/include/zilog/z8536.h:1.9
--- rtems/cpukit/libcsupport/include/zilog/z8536.h:1.8  Fri Jan 28 02:04:27 2005
+++ rtems/cpukit/libcsupport/include/zilog/z8536.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,19 +1,15 @@
</font> /**
  * @file rtems/zilog/z8536.h
<font color='#000088'>+ *
+ * This include file defines information related to a Zilog Z8536
+ * Counter/Timer/IO Chip.  It is a IO mapped part.
+ *
+ * @note This file shares as much as possible with the include
+ *       file for the Z8036 via z8x36.h.
</font>  */
 
 /*
<font color='#880000'>- *  This include file defines information related to a Zilog Z8536
- *  Counter/Timer/IO Chip.  It is a IO mapped part.
- *
- *  Input parameters:   NONE
- *
- *  Output parameters:  NONE
- *
- *  NOTE: This file shares as much as possible with the include
- *        file for the Z8036 via z8x36.h.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libfs/src/imfs/imfs.h:1.50 rtems/cpukit/libfs/src/imfs/imfs.h:1.51
--- rtems/cpukit/libfs/src/imfs/imfs.h:1.50     Tue Jan  4 13:18:09 2011
+++ rtems/cpukit/libfs/src/imfs/imfs.h  Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*
- *  Header file for the In-Memory File System
</font><font color='#000088'>+/**
+ * @file rtems/imfs.h
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2010.
</font><font color='#000088'>+ * Header file for the In-Memory File System
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libfs/src/pipe/pipe.h:1.6 rtems/cpukit/libfs/src/pipe/pipe.h:1.7
--- rtems/cpukit/libfs/src/pipe/pipe.h:1.6      Tue Aug 10 12:41:32 2010
+++ rtems/cpukit/libfs/src/pipe/pipe.h  Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,6 +1,11 @@
</font><font color='#880000'>-/*
- * pipe.h: header of POSIX FIFO/pipe
</font><font color='#000088'>+/**
+ * @file rtems/pipe.h
</font>  *
<font color='#000088'>+ * This include file defines the interface to the POSIX FIFO/pipe file system
+ * support.
+ */
+
+/*
</font>  * Author: Wei Shen <cquark@gmail.com>
  *
  * The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libmisc/capture/capture-cli.h:1.3 rtems/cpukit/libmisc/capture/capture-cli.h:1.4
--- rtems/cpukit/libmisc/capture/capture-cli.h:1.3      Thu Dec  2 12:20:50 2004
+++ rtems/cpukit/libmisc/capture/capture-cli.h  Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,5 +1,8 @@
</font> /**
  * @file rtems/capture-cli.h
<font color='#000088'>+ *
+ * This is the Target Interface Command Line Interface. You need
+ * start the RTEMS monitor.
</font>  */
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libmisc/capture/capture.h:1.11 rtems/cpukit/libmisc/capture/capture.h:1.12
--- rtems/cpukit/libmisc/capture/capture.h:1.11 Sun Nov 29 05:57:23 2009
+++ rtems/cpukit/libmisc/capture/capture.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,5 +1,8 @@
</font> /**
  * @file rtems/capture.h
<font color='#000088'>+ *
+ * This is the Capture Engine component of the RTEMS Measurement and
+ * Monitoring system.
</font>  */
 
 /*

<font color='#006600'>diff -u rtems/cpukit/libmisc/cpuuse/cpuuse.h:1.9 rtems/cpukit/libmisc/cpuuse/cpuuse.h:1.10
--- rtems/cpukit/libmisc/cpuuse/cpuuse.h:1.9    Thu Sep  6 17:51:25 2007
+++ rtems/cpukit/libmisc/cpuuse/cpuuse.h        Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font><font color='#880000'>-/*  cpuuse.h
</font><font color='#000088'>+/**
+ * @file rtems/cpuuse.h
</font>  *
<font color='#880000'>- *  This include file contains information necessary to utilize
- *  and install the cpu usage reporting mechanism.
- *
- *  COPYRIGHT (c) 1989-2007.
</font><font color='#000088'>+ * This include file contains information necessary to utilize
+ * and install the cpu usage reporting mechanism.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libmisc/devnull/devnull.h:1.3 rtems/cpukit/libmisc/devnull/devnull.h:1.4
--- rtems/cpukit/libmisc/devnull/devnull.h:1.3  Wed Feb 23 08:07:40 2011
+++ rtems/cpukit/libmisc/devnull/devnull.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*  devnull.h
- *
- *  Null device driver, derived from rtems' stub driver.
</font><font color='#000088'>+/**
+ * @file rtems/devnull.h
</font>  *
<font color='#000088'>+ * This include file defines the interface to the RTEMS /dev/null
+ * device driver.
+ */
+
+/*
</font>  *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
  *
  *  COPYRIGHT (c) 1989-2000.

<font color='#006600'>diff -u rtems/cpukit/libmisc/devnull/devzero.h:1.1 rtems/cpukit/libmisc/devnull/devzero.h:1.2
--- rtems/cpukit/libmisc/devnull/devzero.h:1.1  Fri May 13 08:46:43 2011
+++ rtems/cpukit/libmisc/devnull/devzero.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,3 +1,10 @@
</font><font color='#000088'>+/**
+ * @file rtems/devzero.h
+ *
+ * This include file defines the interface to the RTEMS /dev/zero
+ * device driver.
+ */
+
</font> /*
  * Copyright (c) 2011 embedded brains GmbH.  All rights reserved.
  *

<font color='#006600'>diff -u rtems/cpukit/libmisc/dumpbuf/dumpbuf.h:1.6 rtems/cpukit/libmisc/dumpbuf/dumpbuf.h:1.7
--- rtems/cpukit/libmisc/dumpbuf/dumpbuf.h:1.6  Mon Jun 28 09:33:34 2010
+++ rtems/cpukit/libmisc/dumpbuf/dumpbuf.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,5 +1,12 @@
</font><font color='#000088'>+/**
+ * @file rtems/dumpbuf.h
+ *
+ * This file defines the interface to the RTEMS methods to print a
+ * memory buffer in a style similar to many ROM monitors and debuggers.
+ */
+
</font> /*
<font color='#880000'>- *  COPYRIGHT (c) 1997-2007.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1997-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may in

<font color='#006600'>diff -u rtems/cpukit/libmisc/fb/fb.h:1.3 rtems/cpukit/libmisc/fb/fb.h:1.4
--- rtems/cpukit/libmisc/fb/fb.h:1.3    Fri Aug 20 16:24:44 2010
+++ rtems/cpukit/libmisc/fb/fb.h        Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+/** @file rtems/fb.h
+ *
+ * This file defines the interface to a frame buffer device driver.
+ */
+
</font> /*
  * Copyright (c) 2000 - Rosimildo da Silva
  *

<font color='#006600'>diff -u rtems/cpukit/libmisc/fb/mw_uid.h:1.2 rtems/cpukit/libmisc/fb/mw_uid.h:1.3
--- rtems/cpukit/libmisc/fb/mw_uid.h:1.2        Thu Feb 17 13:24:20 2011
+++ rtems/cpukit/libmisc/fb/mw_uid.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font><font color='#880000'>-/*
- * Copyright (c) 2000 - Rosimildo da Silva
</font><font color='#000088'>+/**
+ * @file rtems/mw_uid.h
</font>  *
<font color='#880000'>- * MODULE DESCRIPTION:
- * This module defines the interface for input devices used by MicroWindows
</font><font color='#000088'>+ * This file defines the interface for input devices used by MicroWindows
</font>  * in an embedded system environment.
<font color='#000088'>+ */
+
+/*
+ * Copyright (c) 2000 - Rosimildo da Silva
</font>  *
  * $Id$
  */

<font color='#006600'>diff -u rtems/cpukit/libmisc/mouse/mouse_parser.h:1.1 rtems/cpukit/libmisc/mouse/mouse_parser.h:1.2
--- rtems/cpukit/libmisc/mouse/mouse_parser.h:1.1       Mon Mar 14 09:56:07 2011
+++ rtems/cpukit/libmisc/mouse/mouse_parser.h   Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,7 +1,12 @@
</font><font color='#000088'>+/**
+ * @file rtems/mouse_parser.h
+ *
+ * This file is the header file for the Mouse Parser Engine.
+ */
+
</font> /*
<font color='#880000'>- * This file is the header file for the Mouse Parser Engine which
- * is derived from a UNIX Serial Port Mouse Driver with the following
- * notice:
</font><font color='#000088'>+ * This file is derived from a UNIX Serial Port Mouse Driver with the
+ * following notice:
</font>  *
  * ==================================================================
  * Copyright (c) 1999 Greg Haerr <greg@censoft.com>

<font color='#006600'>diff -u rtems/cpukit/libmisc/shell/shellconfig.h:1.27 rtems/cpukit/libmisc/shell/shellconfig.h:1.28
--- rtems/cpukit/libmisc/shell/shellconfig.h:1.27       Mon May 31 08:56:37 2010
+++ rtems/cpukit/libmisc/shell/shellconfig.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,7 +1,11 @@
</font><font color='#880000'>-/*
- *  RTEMS Shell Command Set Configuration
</font><font color='#000088'>+/**
+ * @file rtems/shellconfig.h
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2007.
</font><font color='#000088'>+ * RTEMS Shell Command Set Configuration
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libmisc/stringto/stringto.h:1.4 rtems/cpukit/libmisc/stringto/stringto.h:1.5
--- rtems/cpukit/libmisc/stringto/stringto.h:1.4        Mon Jan 31 23:45:33 2011
+++ rtems/cpukit/libmisc/stringto/stringto.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,5 +1,11 @@
</font><font color='#000088'>+/**
+ * @file rtems/stringto.h
+ *
+ * This file defines the interface to a set of string conversion helpers.
+ */
+
</font> /*
<font color='#880000'>- *  COPYRIGHT (c) 2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 2009-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/libmisc/untar/untar.h:1.9 rtems/cpukit/libmisc/untar/untar.h:1.10
--- rtems/cpukit/libmisc/untar/untar.h:1.9      Sat Jun 12 22:36:34 2010
+++ rtems/cpukit/libmisc/untar/untar.h  Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+/**
+ * @file rtems/untar.h
+ *
+ * This file defines the interface to methods which can untar an image.
+ */
+
</font> /*
  *  Written by: Jake Janovetz <janovetz@tempest.ece.uiuc.edu>
  *

<font color='#006600'>diff -u rtems/cpukit/libnetworking/memory.h:1.2 rtems/cpukit/libnetworking/memory.h:1.3
--- rtems/cpukit/libnetworking/memory.h:1.2     Mon Jun 12 10:00:07 2000
+++ rtems/cpukit/libnetworking/memory.h Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,4 +1,6 @@
</font><font color='#880000'>-/*
</font><font color='#000088'>+/**
+ * @file memory.h
+ *
</font>  * Dummy include file for FreeBSD routines
  */
 

<font color='#006600'>diff -u rtems/cpukit/posix/include/aio.h:1.16 rtems/cpukit/posix/include/aio.h:1.17
--- rtems/cpukit/posix/include/aio.h:1.16       Fri Aug 20 08:30:32 2010
+++ rtems/cpukit/posix/include/aio.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file aio.h
<font color='#000088'>+ *
+ * This file contains the definitions related to POSIX Asynchronous
+ * Input and Output,
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2007.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/mqueue.h:1.13 rtems/cpukit/posix/include/mqueue.h:1.14
--- rtems/cpukit/posix/include/mqueue.h:1.13    Wed Feb 23 08:21:53 2011
+++ rtems/cpukit/posix/include/mqueue.h Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,11 @@
</font> /**
  * @file mqueue.h
<font color='#000088'>+ *
+ * This file contains the definitions related to POSIX Message Queues.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/aio_misc.h:1.6 rtems/cpukit/posix/include/rtems/posix/aio_misc.h:1.7
--- rtems/cpukit/posix/include/rtems/posix/aio_misc.h:1.6       Mon Nov  1 12:32:53 2010
+++ rtems/cpukit/posix/include/rtems/posix/aio_misc.h   Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,3 +1,9 @@
</font><font color='#000088'>+/**
+ * @file rtems/posix/aio_misc.h
+ *
+ * This defines private information for the AIO implementation.
+ */
+
</font> /*
  * Copyright 2010, Alin Rus <alin.codejunkie@gmail.com><span style="background-color: #FF0000"> </span>
  *<span style="background-color: #FF0000"> </span>
<font color='#997700'>@@ -8,7 +14,6 @@
</font>  * $Id$
  */
 
<font color='#880000'>-
</font> #ifndef _AIO_MISC_H
 #define _AIO_MISC_H
 

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/barrier.h:1.3 rtems/cpukit/posix/include/rtems/posix/barrier.h:1.4
--- rtems/cpukit/posix/include/rtems/posix/barrier.h:1.3        Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/barrier.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,18 +1,18 @@
</font> /**
  * @file rtems/posix/barrier.h
<font color='#880000'>- */
-
-/*
</font><font color='#000088'>+ *
</font>  *  This include file contains all the constants and structures associated
  *  with the POSIX Barrier Manager.
  *
  *  Directives provided are:
  *
<font color='#880000'>- *     + create a barrier
- *     + delete a barrier
- *     + wait for a barrier
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *   - create a barrier
+ *   - delete a barrier
+ *   - wait for a barrier
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/cond.h:1.23 rtems/cpukit/posix/include/rtems/posix/cond.h:1.24
--- rtems/cpukit/posix/include/rtems/posix/cond.h:1.23  Wed Dec 17 15:23:35 2008
+++ rtems/cpukit/posix/include/rtems/posix/cond.h       Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/posix/cond.h
<font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX condition variables.
</font>  */
 
 /*
<font color='#880000'>- *  This include file contains all the private support information for
- *  POSIX condition variables.
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/config.h:1.21 rtems/cpukit/posix/include/rtems/posix/config.h:1.22
--- rtems/cpukit/posix/include/rtems/posix/config.h:1.21        Wed Aug  5 10:29:19 2009
+++ rtems/cpukit/posix/include/rtems/posix/config.h     Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,8 +1,8 @@
</font> /**
  * @file rtems/posix/config.h
  *
<font color='#880000'>- *  This include file contains the table of user defined configuration
- *  parameters specific for the POSIX API.
</font><font color='#000088'>+ * This include file contains the table of user defined configuration
+ * parameters specific for the POSIX API.
</font>  */
 
 /*

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/key.h:1.21 rtems/cpukit/posix/include/rtems/posix/key.h:1.22
--- rtems/cpukit/posix/include/rtems/posix/key.h:1.21   Wed Feb 23 08:30:52 2011
+++ rtems/cpukit/posix/include/rtems/posix/key.h        Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/key.h
<font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX key.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/key.h
- *
- *  This include file contains all the private support information for
- *  POSIX key.
- *
- *  COPYRIGHT (c) 1989-2010.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/mqueue.h:1.29 rtems/cpukit/posix/include/rtems/posix/mqueue.h:1.30
--- rtems/cpukit/posix/include/rtems/posix/mqueue.h:1.29        Thu Feb 24 09:09:54 2011
+++ rtems/cpukit/posix/include/rtems/posix/mqueue.h     Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/posix/mqueue.h
  *
<font color='#880000'>- *  This include file contains all the private support information for
- *  POSIX Message Queues.
</font><font color='#000088'>+ * This include file contains all the private support information for
+ * POSIX Message Queues.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/mutex.h:1.26 rtems/cpukit/posix/include/rtems/posix/mutex.h:1.27
--- rtems/cpukit/posix/include/rtems/posix/mutex.h:1.26 Wed Dec 17 15:23:35 2008
+++ rtems/cpukit/posix/include/rtems/posix/mutex.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /**
  * @file rtems/posix/mutex.h
<font color='#880000'>- */
</font><font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX mutex's.
</font> 
 /*
<font color='#880000'>- *  This include file contains all the private support information for
- *  POSIX mutex's.
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/posixapi.h:1.10 rtems/cpukit/posix/include/rtems/posix/posixapi.h:1.11
--- rtems/cpukit/posix/include/rtems/posix/posixapi.h:1.10      Mon Dec 15 13:21:01 2008
+++ rtems/cpukit/posix/include/rtems/posix/posixapi.h   Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file rtems/posix/posixapi.h
<font color='#000088'>+ *
+ * This include file defines the top level interface to the POSIX API
+ * implementation in RTEMS.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/priority.h:1.13 rtems/cpukit/posix/include/rtems/posix/priority.h:1.14
--- rtems/cpukit/posix/include/rtems/posix/priority.h:1.13      Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/priority.h   Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file rtems/posix/priority.h
<font color='#000088'>+ *
+ * This include file defines the interface to the POSIX priority
+ * implementation.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/psignal.h:1.22 rtems/cpukit/posix/include/rtems/posix/psignal.h:1.23
--- rtems/cpukit/posix/include/rtems/posix/psignal.h:1.22       Fri Dec  4 09:30:08 2009
+++ rtems/cpukit/posix/include/rtems/posix/psignal.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,11 @@
</font> /**
  * @file rtems/posix/psignal.h
<font color='#000088'>+ *
+ * This include file defines internal information about POSIX signals.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/pthread.h:1.31 rtems/cpukit/posix/include/rtems/posix/pthread.h:1.32
--- rtems/cpukit/posix/include/rtems/posix/pthread.h:1.31       Tue Jun 15 10:52:29 2010
+++ rtems/cpukit/posix/include/rtems/posix/pthread.h    Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/posix/pthread.h
<font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX threads.
</font>  */
 
 /*
<font color='#880000'>- *  This include file contains all the private support information for
- *  POSIX threads.
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/ptimer.h:1.7 rtems/cpukit/posix/include/rtems/posix/ptimer.h:1.8
--- rtems/cpukit/posix/include/rtems/posix/ptimer.h:1.7 Wed Dec 17 15:23:35 2008
+++ rtems/cpukit/posix/include/rtems/posix/ptimer.h     Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,14 +1,14 @@
</font> /**
  * @file rtems/posix/ptimer.h
<font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX timers.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/ptimer.h
- *
- *  This include file contains all the private support information for
- *  POSIX timers.
- *
- *  COPYRIGHT (c) 1998.
- *  Alfonso Escalera Piña
</font><font color='#000088'>+/*
+ *  Initial Implementation:
+ *    COPYRIGHT (c) 1998.  Alfonso Escalera Piña
+ *  Largely rewritten by Joel Sherrill.
</font>  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/rwlock.h:1.3 rtems/cpukit/posix/include/rtems/posix/rwlock.h:1.4
--- rtems/cpukit/posix/include/rtems/posix/rwlock.h:1.3 Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/rwlock.h     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,18 +1,18 @@
</font> /**
  * @file rtems/posix/rwlock.h
<font color='#880000'>- */
-
-/*
- *  This include file contains all the constants and structures associated
- *  with the POSIX RWLock Manager.
</font>  *
<font color='#880000'>- *  Directives provided are:
</font><font color='#000088'>+ * This include file contains all the constants and structures associated
+ * with the POSIX RWLock Manager.
</font>  *
<font color='#880000'>- *     + create a RWLock
- *     + delete a RWLock
- *     + wait for a RWLock
</font><font color='#000088'>+ * Directives provided are:
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *   - create a RWLock
+ *   - delete a RWLock
+ *   - wait for a RWLock
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/semaphore.h:1.27 rtems/cpukit/posix/include/rtems/posix/semaphore.h:1.28
--- rtems/cpukit/posix/include/rtems/posix/semaphore.h:1.27     Wed Jul 22 10:39:09 2009
+++ rtems/cpukit/posix/include/rtems/posix/semaphore.h  Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/semaphore.h
<font color='#000088'>+ *
+ * This include file contains all the private support information for
+ * POSIX Semaphores.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/semaphore.h
- *
- *  This include file contains all the private support information for
- *  POSIX Semaphores.
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/sigset.h:1.1 rtems/cpukit/posix/include/rtems/posix/sigset.h:1.2
--- rtems/cpukit/posix/include/rtems/posix/sigset.h:1.1 Fri Dec  4 09:24:21 2009
+++ rtems/cpukit/posix/include/rtems/posix/sigset.h     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file rtems/posix/sigset.h
<font color='#000088'>+ *
+ * This file defines the interface to implementation helper for management
+ * of POSIX Signal Sets.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/spinlock.h:1.3 rtems/cpukit/posix/include/rtems/posix/spinlock.h:1.4
--- rtems/cpukit/posix/include/rtems/posix/spinlock.h:1.3       Mon Nov 30 09:44:20 2009
+++ rtems/cpukit/posix/include/rtems/posix/spinlock.h   Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,18 +1,18 @@
</font> /**
  * @file rtems/posix/spinlock.h
<font color='#880000'>- */
-
-/*
- *  This include file contains all the constants and structures associated
- *  with the POSIX Spinlock Manager.
</font>  *
<font color='#880000'>- *  Directives provided are:
</font><font color='#000088'>+ * This include file contains all the constants and structures associated
+ * with the POSIX Spinlock Manager.
</font>  *
<font color='#880000'>- *     + create a spinlock
- *     + delete a spinlock
- *     + wait for a spinlock
</font><font color='#000088'>+ *  Directives provided are:
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *   - create a spinlock
+ *   - delete a spinlock
+ *   - wait for a spinlock
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.30 rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.31
--- rtems/cpukit/posix/include/rtems/posix/threadsup.h:1.30     Mon Jun 14 01:03:57 2010
+++ rtems/cpukit/posix/include/rtems/posix/threadsup.h  Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,11 @@
</font> /**
  * @file rtems/posix/threadsup.h
<font color='#000088'>+ *
+ * This defines the POSIX thread API extension.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/time.h:1.15 rtems/cpukit/posix/include/rtems/posix/time.h:1.16
--- rtems/cpukit/posix/include/rtems/posix/time.h:1.15  Fri Jun 17 09:55:27 2011
+++ rtems/cpukit/posix/include/rtems/posix/time.h       Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file rtems/posix/time.h
<font color='#000088'>+ *
+ * This defines the interface to implementation helper routines related
+ * to POSIX time types.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/rtems/posix/timer.h:1.22 rtems/cpukit/posix/include/rtems/posix/timer.h:1.23
--- rtems/cpukit/posix/include/rtems/posix/timer.h:1.22 Thu Feb 24 09:09:54 2011
+++ rtems/cpukit/posix/include/rtems/posix/timer.h      Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file rtems/posix/timer.h
<font color='#000088'>+ *
+ * This include files defines the internal support for implementation of
+ * POSIX Timers.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/include/semaphore.h:1.9 rtems/cpukit/posix/include/semaphore.h:1.10
--- rtems/cpukit/posix/include/semaphore.h:1.9  Wed Jul 22 10:39:09 2009
+++ rtems/cpukit/posix/include/semaphore.h      Fri Jun 24 12:52:56 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font> /**
  * @file semaphore.h
<font color='#880000'>- */
</font><font color='#000088'>+ *
+ * This file contains definitions that are internal to the RTEMS
+ * implementation of POSIX Semaphores.
+ *
</font> 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2007.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/barrier.inl:1.4 rtems/cpukit/posix/inline/rtems/posix/barrier.inl:1.5
--- rtems/cpukit/posix/inline/rtems/posix/barrier.inl:1.4       Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/barrier.inl   Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/posix/barrier.inl
<font color='#000088'>+ *
+ *  This file contains the static inlin implementation of the inlined
+ *  routines from the POSIX Barrier Manager.
</font>  */
 
 /*
<font color='#880000'>- *  This file contains the static inlin implementation of the inlined
- *  routines from the POSIX Barrier Manager.
- *
- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/cond.inl:1.18 rtems/cpukit/posix/inline/rtems/posix/cond.inl:1.19
--- rtems/cpukit/posix/inline/rtems/posix/cond.inl:1.18 Thu Sep  4 10:23:11 2008
+++ rtems/cpukit/posix/inline/rtems/posix/cond.inl      Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/cond.inl
<font color='#000088'>+ *
+ * This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
+ * inlined routines for POSIX condition variables.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/cond.inl
- *
- *  This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
- *  inlined routines for POSIX condition variables.
- *
- *  COPYRIGHT (c) 1989-2002.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/mqueue.inl:1.17 rtems/cpukit/posix/inline/rtems/posix/mqueue.inl:1.18
--- rtems/cpukit/posix/inline/rtems/posix/mqueue.inl:1.17       Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/mqueue.inl    Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/mqueue.inl
<font color='#000088'>+ *
+ * This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
+ * inlined routines for POSIX Message Queue.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/mqueue.inl
- *
- *  This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
- *  inlined routines for POSIX Message Queue.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/mutex.inl:1.18 rtems/cpukit/posix/inline/rtems/posix/mutex.inl:1.19
--- rtems/cpukit/posix/inline/rtems/posix/mutex.inl:1.18        Thu Sep  4 10:23:11 2008
+++ rtems/cpukit/posix/inline/rtems/posix/mutex.inl     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,11 @@
</font> /**
  * @file rtems/posix/mutex.inl
<font color='#880000'>- */
-
-/*  rtems/posix/mutex.inl
</font>  *
<font color='#880000'>- *  This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
- *  inlined routines for POSIX mutex's.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ * This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
+ * inlined routines for POSIX mutex's.
+ *?
+
+/*  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/priority.inl:1.15 rtems/cpukit/posix/inline/rtems/posix/priority.inl:1.16
--- rtems/cpukit/posix/inline/rtems/posix/priority.inl:1.15     Wed Jun 24 01:38:52 2009
+++ rtems/cpukit/posix/inline/rtems/posix/priority.inl  Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,11 @@
</font> /**
  * @file rtems/posix/priority.inl
<font color='#000088'>+ *
+ * This defines the static inline methods related to POSIX priority management.
</font>  */
 
 /*<span style="background-color: #FF0000">  </span>
<font color='#880000'>- *  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/pthread.inl:1.13 rtems/cpukit/posix/inline/rtems/posix/pthread.inl:1.14
--- rtems/cpukit/posix/inline/rtems/posix/pthread.inl:1.13      Thu Sep  4 10:23:11 2008
+++ rtems/cpukit/posix/inline/rtems/posix/pthread.inl   Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/pthread.inl
<font color='#000088'>+ *
+ * This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
+ * inlined routines for POSIX threads.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/pthread.inl
- *
- *  This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
- *  inlined routines for POSIX threads.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/rwlock.inl:1.4 rtems/cpukit/posix/inline/rtems/posix/rwlock.inl:1.5
--- rtems/cpukit/posix/inline/rtems/posix/rwlock.inl:1.4        Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/rwlock.inl    Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
<font color='#880000'>- * @file rtems/posix/RWLock.inl
</font><font color='#000088'>+ * @file rtems/posix/rwlock.inl
+ *
+ * This file contains the static inlin implementation of the inlined
+ * routines from the POSIX RWLock Manager.
</font>  */
 
 /*
<font color='#880000'>- *  This file contains the static inlin implementation of the inlined
- *  routines from the POSIX RWLock Manager.
- *
- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/semaphore.inl:1.16 rtems/cpukit/posix/inline/rtems/posix/semaphore.inl:1.17
--- rtems/cpukit/posix/inline/rtems/posix/semaphore.inl:1.16    Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/semaphore.inl Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/semaphore.inl
<font color='#000088'>+ *
+ * This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
+ * inlined routines for POSIX Semaphores.
</font>  */
 
<font color='#880000'>-/*  rtems/posix/semaphore.inl
- *
- *  This include file contains the static inline implementation of the private<span style="background-color: #FF0000"> </span>
- *  inlined routines for POSIX Semaphores.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/spinlock.inl:1.4 rtems/cpukit/posix/inline/rtems/posix/spinlock.inl:1.5
--- rtems/cpukit/posix/inline/rtems/posix/spinlock.inl:1.4      Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/spinlock.inl  Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**
  * @file rtems/posix/spinlock.inl
<font color='#000088'>+ *
+ * This file contains the static inlin implementation of the inlined
+ * routines from the POSIX Spinlock Manager.
</font>  */
 
 /*
<font color='#880000'>- *  This file contains the static inlin implementation of the inlined
- *  routines from the POSIX Spinlock Manager.
- *
- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/posix/inline/rtems/posix/timer.inl:1.8 rtems/cpukit/posix/inline/rtems/posix/timer.inl:1.9
--- rtems/cpukit/posix/inline/rtems/posix/timer.inl:1.8 Mon Jan  5 14:26:01 2009
+++ rtems/cpukit/posix/inline/rtems/posix/timer.inl     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/posix/timer.inl
<font color='#000088'>+ *
+ * This file contains the static inline implementation of the inlined routines
+ * from the POSIX Timer Manager.
</font>  */
 
<font color='#880000'>-/*  timer.inl
- *
- *  This file contains the static inline implementation of the inlined routines
- *  from the POSIX Timer Manager.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/rtems/include/rtems/rtems/barrier.h:1.8 rtems/cpukit/rtems/include/rtems/rtems/barrier.h:1.9
--- rtems/cpukit/rtems/include/rtems/rtems/barrier.h:1.8        Sun Nov 29 05:55:14 2009
+++ rtems/cpukit/rtems/include/rtems/rtems/barrier.h    Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -6,11 +6,11 @@
</font>  *
  *  Directives provided are:
  *
<font color='#880000'>- *     - create a barrier
- *     - get an ID of a barrier
- *     - delete a barrier
- *     - wait for a barrier
- *     - signal a barrier
</font><font color='#000088'>+ *    - create a barrier
+ *    - get an ID of a barrier
+ *    - delete a barrier
+ *    - wait for a barrier
+ *    - signal a barrier
</font>  */
 
 /*  COPYRIGHT (c) 1989-2008.

<font color='#006600'>diff -u rtems/cpukit/rtems/include/rtems/rtems/object.h:1.11 rtems/cpukit/rtems/include/rtems/rtems/object.h:1.12
--- rtems/cpukit/rtems/include/rtems/rtems/object.h:1.11        Fri Jun 17 09:55:27 2011
+++ rtems/cpukit/rtems/include/rtems/rtems/object.h     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,8 +1,10 @@
</font> /**
  * @file rtems/rtems/object.h
<font color='#000088'>+ *
+ * This include file defines Classic API interfaces to Object Services.
</font>  */
 
<font color='#880000'>-/*  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+/*  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/rtems/include/rtems/rtems/timer.h:1.34 rtems/cpukit/rtems/include/rtems/rtems/timer.h:1.35
--- rtems/cpukit/rtems/include/rtems/rtems/timer.h:1.34 Tue Dec 15 12:26:41 2009
+++ rtems/cpukit/rtems/include/rtems/rtems/timer.h      Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -22,7 +22,8 @@
</font>  *     - cancel a time
  */
 
<font color='#880000'>-/*  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  Copyright (c) 2009 embedded brains GmbH.

<font color='#006600'>diff -u rtems/cpukit/rtems/inline/rtems/rtems/barrier.inl:1.5 rtems/cpukit/rtems/inline/rtems/rtems/barrier.inl:1.6
--- rtems/cpukit/rtems/inline/rtems/rtems/barrier.inl:1.5       Thu Sep  4 12:43:18 2008
+++ rtems/cpukit/rtems/inline/rtems/rtems/barrier.inl   Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,11 +1,12 @@
</font> /**
  * @file rtems/rtems/barrier.inl
  *
<font color='#880000'>- *  This file contains the static inlin implementation of the inlined
- *  routines from the Barrier Manager.
</font><font color='#000088'>+ * This file contains the static inlin implementation of the inlined
+ * routines from the Barrier Manager.
</font>  */
 
<font color='#880000'>-/*  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2008.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/rtems/inline/rtems/rtems/timer.inl:1.16 rtems/cpukit/rtems/inline/rtems/rtems/timer.inl:1.17
--- rtems/cpukit/rtems/inline/rtems/rtems/timer.inl:1.16        Thu Sep  4 12:43:18 2008
+++ rtems/cpukit/rtems/inline/rtems/rtems/timer.inl     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,11 +1,12 @@
</font> /**
  * @file rtems/rtems/timer.inl
  *
<font color='#880000'>- *  This file contains the static inline implementation of the inlined routines
- *  from the Timer Manager.
</font><font color='#000088'>+ * This file contains the static inline implementation of the inlined routines
+ * from the Timer Manager.
</font>  */
 
<font color='#880000'>-/*  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/rtems/mainpage.h:1.4 rtems/cpukit/rtems/mainpage.h:1.5
--- rtems/cpukit/rtems/mainpage.h:1.4   Mon Aug  9 03:59:57 2010
+++ rtems/cpukit/rtems/mainpage.h       Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,5 +1,11 @@
</font><font color='#000088'>+/**
+ * @file rtems/rtems/mainpage.h
+ *
+ * This file exists to provide a top level description of RTEMS for Doxygen.
+ */
+
</font> /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/rtems/src/semtranslatereturncode.c:1.23 rtems/cpukit/rtems/src/semtranslatereturncode.c:1.24
--- rtems/cpukit/rtems/src/semtranslatereturncode.c:1.23        Mon Feb 14 20:31:05 2011
+++ rtems/cpukit/rtems/src/semtranslatereturncode.c     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -71,7 +71,7 @@
</font>   RTEMS_OBJECT_WAS_DELETED, /* CORE_MUTEX_WAS_DELETED */
   RTEMS_TIMEOUT,            /* CORE_MUTEX_TIMEOUT */
 #if defined(__RTEMS_STRICT_ORDER_MUTEX__)
<font color='#880000'>-    CORE_MUTEX_RELEASE_NOT_ORDER,
</font><font color='#000088'>+    123,
</font> #endif
   RTEMS_INVALID_PRIORITY   /* CORE_MUTEX_STATUS_CEILING_VIOLATED */
 };

<font color='#006600'>diff -u rtems/cpukit/sapi/include/rtems/config.h:1.55 rtems/cpukit/sapi/include/rtems/config.h:1.56
--- rtems/cpukit/sapi/include/rtems/config.h:1.55       Thu Feb 17 16:21:44 2011
+++ rtems/cpukit/sapi/include/rtems/config.h    Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,11 +1,11 @@
</font> /**
  * @file rtems/config.h
<font color='#000088'>+ *
+ * This include file contains the table of user defined configuration
+ * parameters.
</font>  */
 
 /*
<font color='#880000'>- *  This include file contains the table of user defined configuration
- *  parameters.
- *
</font>  *  COPYRIGHT (c) 1989-2011.
  *  On-Line Applications Research Corporation (OAR).
  *

<font color='#006600'>diff -u rtems/cpukit/sapi/include/rtems/fatal.h:1.15 rtems/cpukit/sapi/include/rtems/fatal.h:1.16
--- rtems/cpukit/sapi/include/rtems/fatal.h:1.15        Wed Feb 23 08:13:16 2011
+++ rtems/cpukit/sapi/include/rtems/fatal.h     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,18 +1,17 @@
</font> /**
  * @file rtems/fatal.h
<font color='#880000'>- */
-
-/*
- *  This include file contains constants and prototypes related
- *  to the Fatal Error Manager.  This manager processes all fatal or
- *  irrecoverable errors.
- *
- *  This manager provides directives to:
</font>  *
<font color='#880000'>- *     + announce a fatal error has occurred
</font><font color='#000088'>+ * This include file contains constants and prototypes related
+ * to the Fatal Error Manager.  This manager processes all fatal or
+ * irrecoverable errors.
</font>  *
<font color='#000088'>+ * This manager provides directives to:
</font>  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *   - announce a fatal error has occurred
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/sapi/include/rtems/mptables.h:1.9 rtems/cpukit/sapi/include/rtems/mptables.h:1.10
--- rtems/cpukit/sapi/include/rtems/mptables.h:1.9      Thu Jan 27 23:00:20 2005
+++ rtems/cpukit/sapi/include/rtems/mptables.h  Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,9 +1,12 @@
</font><font color='#880000'>-/*  mptables.h
</font><font color='#000088'>+/**
+ * @file rtems/mptables.h
</font>  *
<font color='#880000'>- *  This include file contains the executive's pre-initialized tables
- *  used in a multiprocessor configuration.
- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ * This include file contains the executive's pre-initialized tables
+ * used in a multiprocessor configuration.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/object.h:1.82 rtems/cpukit/score/include/rtems/score/object.h:1.83
--- rtems/cpukit/score/include/rtems/score/object.h:1.82        Fri Jun 24 12:50:31 2011
+++ rtems/cpukit/score/include/rtems/score/object.h     Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,15 +1,13 @@
</font> /**
  * @file  rtems/score/object.h
  *
<font color='#880000'>- *
- *  This include file contains all the constants and structures associated
- *  with the Object Handler.  This Handler provides mechanisms which
- *  can be used to initialize and manipulate all objects which have
- *  ids.
</font><font color='#000088'>+ * This include file contains all the constants and structures associated
+ * with the Object Handler.  This Handler provides mechanisms which
+ * can be used to initialize and manipulate all objects which have ids.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/priority.h:1.28 rtems/cpukit/score/include/rtems/score/priority.h:1.29
--- rtems/cpukit/score/include/rtems/score/priority.h:1.28      Fri Jun 17 10:40:09 2011
+++ rtems/cpukit/score/include/rtems/score/priority.h   Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,13 @@
</font> /**
<font color='#880000'>- *  @file  rtems/score/priority.h
</font><font color='#000088'>+ * @file rtems/score/priority.h
</font>  *
<font color='#880000'>- *  This include file contains all thread priority manipulation routines.
- *  This Handler provides mechanisms which can be used to
- *  initialize and manipulate thread priorities.
</font><font color='#000088'>+ * This include file contains all thread priority manipulation routines.
+ * This Handler provides mechanisms which can be used to
+ * initialize and manipulate thread priorities.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2010.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/inline/rtems/score/object.inl:1.45 rtems/cpukit/score/inline/rtems/score/object.inl:1.46
--- rtems/cpukit/score/inline/rtems/score/object.inl:1.45       Mon Aug  9 04:16:08 2010
+++ rtems/cpukit/score/inline/rtems/score/object.inl    Fri Jun 24 12:52:57 2011
</font><font color='#997700'>@@ -1,13 +1,12 @@
</font> /**
  * @file rtems/score/object.inl
<font color='#000088'>+ *
+ * This include file contains the static inline implementation of all
+ * of the inlined routines in the Object Handler.
</font>  */
 
 /*
<font color='#880000'>- *
- *  This include file contains the static inline implementation of all
- *  of the inlined routines in the Object Handler.
- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/inline/rtems/score/priority.inl:1.26 rtems/cpukit/score/inline/rtems/score/priority.inl:1.27
--- rtems/cpukit/score/inline/rtems/score/priority.inl:1.26     Thu Jul 29 12:52:10 2010
+++ rtems/cpukit/score/inline/rtems/score/priority.inl  Fri Jun 24 12:52:58 2011
</font><font color='#997700'>@@ -1,12 +1,12 @@
</font> /**<span style="background-color: #FF0000"> </span>
<font color='#880000'>- *  @file  rtems/score/priority.inl
</font><font color='#000088'>+ * @file rtems/score/priority.inl
</font>  *
<font color='#880000'>- *  This file contains the static inline implementation of all inlined
- *  routines in the Priority Handler.
</font><font color='#000088'>+ * This file contains the static inline implementation of all inlined
+ * routines in the Priority Handler.
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2004.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
</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>