change log for rtems (2011-06-24)
rtems-vc at rtems.org
rtems-vc at rtems.org
Fri Jun 24 18:10:21 UTC 2011
*joel*:
2011-06-24 Joel Sherrill <joel.sherrill at 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.
M 1.2860 cpukit/ChangeLog
M 1.7 cpukit/Doxyfile.in
M 1.15 cpukit/score/include/rtems/score/apimutex.h
M 1.4 cpukit/score/include/rtems/score/basedefs.h
M 1.34 cpukit/score/include/rtems/score/coremsg.h
M 1.82 cpukit/score/include/rtems/score/object.h
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
@@ -1,3 +1,10 @@
+2011-06-24 Joel Sherrill <joel.sherrill at 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.
+
2011-06-24 Arnout Vandecappelle <arnout at mind.be>
Sebastien Bourdeauducq <sebastien at milkymist.org>
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
@@ -563,7 +563,7 @@
# and error messages should be written. If left blank the output is written
# to stderr.
-WARN_LOGFILE =
+WARN_LOGFILE = warnings.log
#---------------------------------------------------------------------------
# configuration options related to the input files
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
@@ -98,11 +98,27 @@
* @{
*/
+/**
+ * @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.
+ */
SCORE_EXTERN API_Mutex_Control *_RTEMS_Allocator_Mutex;
+/**
+ * @brief Macro to Ease Locking the Allocator Mutex
+ *
+ * This macro makes it explicit that one is locking the allocator mutex.
+ */
#define _RTEMS_Lock_allocator() \
_API_Mutex_Lock( _RTEMS_Allocator_Mutex )
+/**
+ * @brief Macro to Ease Unlocking the Allocator Mutex
+ *
+ * This macro makes it explicit that one is unlocking the allocator mutex.
+ */
#define _RTEMS_Unlock_allocator() \
_API_Mutex_Unlock( _RTEMS_Allocator_Mutex )
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
@@ -31,10 +31,16 @@
#endif
#ifndef TRUE
+ /**
+ * This ensures that RTEMS has TRUE defined in all situations.
+ */
#define TRUE 1
#endif
#ifndef FALSE
+ /**
+ * This ensures that RTEMS has FALSE defined in all situations.
+ */
#define FALSE 0
#endif
@@ -49,11 +55,11 @@
* referenced as "external" in every other file.
*/
#ifdef SCORE_INIT
-#undef SCORE_EXTERN
-#define SCORE_EXTERN
+ #undef SCORE_EXTERN
+ #define SCORE_EXTERN
#else
-#undef SCORE_EXTERN
-#define SCORE_EXTERN extern
+ #undef SCORE_EXTERN
+ #define SCORE_EXTERN extern
#endif
/**
@@ -63,11 +69,11 @@
* referenced as "external" in every other file.
*/
#ifdef SAPI_INIT
-#undef SAPI_EXTERN
-#define SAPI_EXTERN
+ #undef SAPI_EXTERN
+ #define SAPI_EXTERN
#else
-#undef SAPI_EXTERN
-#define SAPI_EXTERN extern
+ #undef SAPI_EXTERN
+ #define SAPI_EXTERN extern
#endif
/**
@@ -77,11 +83,11 @@
* referenced as "external" in every other file.
*/
#ifdef RTEMS_API_INIT
-#undef RTEMS_EXTERN
-#define RTEMS_EXTERN
+ #undef RTEMS_EXTERN
+ #define RTEMS_EXTERN
#else
-#undef RTEMS_EXTERN
-#define RTEMS_EXTERN extern
+ #undef RTEMS_EXTERN
+ #define RTEMS_EXTERN extern
#endif
/**
@@ -91,11 +97,11 @@
* referenced as "external" in every other file.
*/
#ifdef POSIX_API_INIT
-#undef POSIX_EXTERN
-#define POSIX_EXTERN
+ #undef POSIX_EXTERN
+ #define POSIX_EXTERN
#else
-#undef POSIX_EXTERN
-#define POSIX_EXTERN extern
+ #undef POSIX_EXTERN
+ #define POSIX_EXTERN extern
#endif
/**
@@ -105,9 +111,9 @@
* type checking with no cost in code size or execution speed.
*/
#ifdef __GNUC__
-# define RTEMS_INLINE_ROUTINE static __inline__
+ #define RTEMS_INLINE_ROUTINE static __inline__
#else
-# define RTEMS_INLINE_ROUTINE static inline
+ #define RTEMS_INLINE_ROUTINE static inline
#endif
/**
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
@@ -36,14 +36,28 @@
#include <rtems/score/watchdog.h>
#if defined(RTEMS_POSIX_API)
+ /**
+ * This macro is defined when an API is enabled that requires that the
+ * Message Queue Handler include support for priority based enqueuing
+ * of messages.
+ */
#define RTEMS_SCORE_COREMSG_ENABLE_MESSAGE_PRIORITY
#endif
#if defined(RTEMS_POSIX_API)
+ /**
+ * This macro is defined when an API is enabled that requires that the
+ * Message Queue Handler include support for notification of enqueuing
+ * a message.
+ */
#define RTEMS_SCORE_COREMSG_ENABLE_NOTIFICATION
#endif
#if defined(RTEMS_POSIX_API)
+ /**
+ * This macro is defined when an API is enabled that requires the
+ * Message Queue Handler include support for blocking send operations.
+ */
#define RTEMS_SCORE_COREMSG_ENABLE_BLOCKING_SEND
#endif
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
@@ -26,6 +26,12 @@
#include <rtems/score/isr.h>
#if defined(RTEMS_POSIX_API)
+ /**
+ * 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.
+ */
#define RTEMS_SCORE_OBJECT_ENABLE_STRING_NAMES
#endif
*joel*:
2011-06-24 Joel Sherrill <joel.sherrill at 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.
M 1.2861 cpukit/ChangeLog
M 1.12 cpukit/include/rtems/bspIo.h
M 1.5 cpukit/include/rtems/concat.h
M 1.3 cpukit/include/rtems/endian.h
M 1.8 cpukit/include/rtems/fs.h
M 1.6 cpukit/include/rtems/irq.h
M 1.19 cpukit/include/rtems/pci.h
M 1.7 cpukit/include/rtems/userenv.h
M 1.7 cpukit/libblock/include/rtems/flashdisk.h
M 1.3 cpukit/libblock/include/rtems/nvdisk-sram.h
M 1.6 cpukit/libblock/include/rtems/nvdisk.h
M 1.16 cpukit/libcsupport/include/clockdrv.h
M 1.17 cpukit/libcsupport/include/console.h
M 1.10 cpukit/libcsupport/include/iosupp.h
M 1.10 cpukit/libcsupport/include/motorola/mc68230.h
M 1.12 cpukit/libcsupport/include/rtems/assoc.h
M 1.13 cpukit/libcsupport/include/rtems/error.h
M 1.4 cpukit/libcsupport/include/rtems/framebuffer.h
M 1.2 cpukit/libcsupport/include/rtems/gxx_wrappers.h
M 1.28 cpukit/libcsupport/include/rtems/libcsupport.h
M 1.41 cpukit/libcsupport/include/rtems/libio_.h
M 1.14 cpukit/libcsupport/include/rtems/malloc.h
M 1.14 cpukit/libcsupport/include/rtems/termiostypes.h
M 1.10 cpukit/libcsupport/include/spurious.h
M 1.3 cpukit/libcsupport/include/sys/statvfs.h
M 1.10 cpukit/libcsupport/include/sys/termios.h
M 1.7 cpukit/libcsupport/include/sys/utsname.h
M 1.11 cpukit/libcsupport/include/zilog/z8036.h
M 1.9 cpukit/libcsupport/include/zilog/z8530.h
M 1.9 cpukit/libcsupport/include/zilog/z8536.h
M 1.51 cpukit/libfs/src/imfs/imfs.h
M 1.7 cpukit/libfs/src/pipe/pipe.h
M 1.4 cpukit/libmisc/capture/capture-cli.h
M 1.12 cpukit/libmisc/capture/capture.h
M 1.10 cpukit/libmisc/cpuuse/cpuuse.h
M 1.4 cpukit/libmisc/devnull/devnull.h
M 1.2 cpukit/libmisc/devnull/devzero.h
M 1.7 cpukit/libmisc/dumpbuf/dumpbuf.h
M 1.4 cpukit/libmisc/fb/fb.h
M 1.3 cpukit/libmisc/fb/mw_uid.h
M 1.2 cpukit/libmisc/mouse/mouse_parser.h
M 1.28 cpukit/libmisc/shell/shellconfig.h
M 1.5 cpukit/libmisc/stringto/stringto.h
M 1.10 cpukit/libmisc/untar/untar.h
M 1.3 cpukit/libnetworking/memory.h
M 1.17 cpukit/posix/include/aio.h
M 1.14 cpukit/posix/include/mqueue.h
M 1.7 cpukit/posix/include/rtems/posix/aio_misc.h
M 1.4 cpukit/posix/include/rtems/posix/barrier.h
M 1.24 cpukit/posix/include/rtems/posix/cond.h
M 1.22 cpukit/posix/include/rtems/posix/config.h
M 1.22 cpukit/posix/include/rtems/posix/key.h
M 1.30 cpukit/posix/include/rtems/posix/mqueue.h
M 1.27 cpukit/posix/include/rtems/posix/mutex.h
M 1.11 cpukit/posix/include/rtems/posix/posixapi.h
M 1.14 cpukit/posix/include/rtems/posix/priority.h
M 1.23 cpukit/posix/include/rtems/posix/psignal.h
M 1.32 cpukit/posix/include/rtems/posix/pthread.h
M 1.8 cpukit/posix/include/rtems/posix/ptimer.h
M 1.4 cpukit/posix/include/rtems/posix/rwlock.h
M 1.28 cpukit/posix/include/rtems/posix/semaphore.h
M 1.2 cpukit/posix/include/rtems/posix/sigset.h
M 1.4 cpukit/posix/include/rtems/posix/spinlock.h
M 1.31 cpukit/posix/include/rtems/posix/threadsup.h
M 1.16 cpukit/posix/include/rtems/posix/time.h
M 1.23 cpukit/posix/include/rtems/posix/timer.h
M 1.10 cpukit/posix/include/semaphore.h
M 1.5 cpukit/posix/inline/rtems/posix/barrier.inl
M 1.19 cpukit/posix/inline/rtems/posix/cond.inl
M 1.18 cpukit/posix/inline/rtems/posix/mqueue.inl
M 1.19 cpukit/posix/inline/rtems/posix/mutex.inl
M 1.16 cpukit/posix/inline/rtems/posix/priority.inl
M 1.14 cpukit/posix/inline/rtems/posix/pthread.inl
M 1.5 cpukit/posix/inline/rtems/posix/rwlock.inl
M 1.17 cpukit/posix/inline/rtems/posix/semaphore.inl
M 1.5 cpukit/posix/inline/rtems/posix/spinlock.inl
M 1.9 cpukit/posix/inline/rtems/posix/timer.inl
M 1.9 cpukit/rtems/include/rtems/rtems/barrier.h
M 1.12 cpukit/rtems/include/rtems/rtems/object.h
M 1.35 cpukit/rtems/include/rtems/rtems/timer.h
M 1.6 cpukit/rtems/inline/rtems/rtems/barrier.inl
M 1.17 cpukit/rtems/inline/rtems/rtems/timer.inl
M 1.5 cpukit/rtems/mainpage.h
M 1.24 cpukit/rtems/src/semtranslatereturncode.c
M 1.56 cpukit/sapi/include/rtems/config.h
M 1.16 cpukit/sapi/include/rtems/fatal.h
M 1.10 cpukit/sapi/include/rtems/mptables.h
M 1.83 cpukit/score/include/rtems/score/object.h
M 1.29 cpukit/score/include/rtems/score/priority.h
M 1.46 cpukit/score/inline/rtems/score/object.inl
M 1.27 cpukit/score/inline/rtems/score/priority.inl
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
@@ -1,5 +1,74 @@
2011-06-24 Joel Sherrill <joel.sherrill at 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.
+
+2011-06-24 Joel Sherrill <joel.sherrill at oarcorp.com>
+
* Doxyfile.in, score/include/rtems/score/apimutex.h,
score/include/rtems/score/basedefs.h,
score/include/rtems/score/coremsg.h,
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
@@ -1,9 +1,12 @@
-/* bspIo.h
- *
- * This include file contains declaration of interface that
- * will be provided by the file contained in this directory.
+/**
+ * @file rtems/bspIo.h
*
+ * This include file defines the interface to kernel print methods.
+ */
+
+/*
* COPYRIGHT (c) 1998 valette at crf.canon.fr
+ * COPYRIGHT (c) 2011 On-Line Applications Research Corporation.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
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
@@ -1,3 +1,9 @@
+/**
+ * @file rtems/concat.h
+ *
+ * This include file defines ANSI concatenation macros.
+ */
+
/*
* Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
*
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
@@ -1,3 +1,9 @@
+/**
+ * @file rtems/endian.h
+ *
+ * This include file provides endian information about the target.
+ */
+
/*
* $Id$
*/
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
@@ -1,7 +1,11 @@
-/*
- * Some basic filesystem types
+/**
+ * @file rtems/fs.h
*
- * COPYRIGHT (c) 1989-1999.
+ * This file defines basic filesystem types
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,8 +1,11 @@
-/*
- *
- * This include file describe the data structure and the functions implemented
- * by rtems to write interrupt handlers.
+/**
+ * @file rtems/irq.h
*
+ * This include file describe the data structure and the functions implemented
+ * by rtems to write interrupt handlers.
+ */
+
+/*
* CopyRight (C) 1998 valette at crf.canon.fr
*
* This code is heavilly inspired by the public specification of STREAM V2
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
@@ -1,6 +1,10 @@
-/*
+/**
+ * @file rtems/pci.h
*
- * PCI defines and function prototypes
+ * PCI defines and function prototypes
+ */
+
+/*
* Copyright 1994, Drew Eckhardt
* Copyright 1997, 1998 Martin Mares <mj at atrey.karlin.mff.cuni.cz>
*
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
@@ -1,7 +1,11 @@
-/*
- * Libio Internal Information
+/**
+ * @file rtems/userenv.h
*
- * COPYRIGHT (c) 1989-1999.
+ * This file defines the interface for POSIX per-process environment.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,6 +1,10 @@
-/*
- * flashdisk.h -- Flash disk block device implementation
+/**
+ * @file rtems/flashdisk.h
*
+ * This file defines the interface to a flash disk block device.
+ */
+
+/*
* Copyright (C) 2007 Chris Johns
*
* The license and distribution terms for this file may be
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
@@ -1,3 +1,9 @@
+/**
+ * @file rtems/nvdisk-sram.h
+ *
+ * This driver maps an NV disk to static RAM. You can use this
+ */
+
/*
* $Id$
*
@@ -6,12 +12,6 @@
* Copyright 2007 Chris Johns (chrisj at rtems.org)
*/
-/**
- * NV Disk Static RAM Device Driver.
- *
- * This driver maps an NV disk to static RAM. You can use this
- */
-
#if !defined (_RTEMS_NVDISK_SRAM_H_)
#define _RTEMS_NVDISK_SRAM_H_
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
@@ -1,6 +1,10 @@
-/*
- * nvdisk.h -- Non-volatile disk block device implementation
+/**
+ * @file rtems/nvdisk.h
*
+ * Non-volatile disk block device implementation
+ */
+
+/*
* Copyright (C) 2007 Chris Johns
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,11 @@
/**
* @file rtems/clockdrv.h
+ *
+ * This file describes the Clock Driver for all boards.
*/
-/* clock.h
- *
- * This file describes the Clock Driver for all boards.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/console.h
+ *
+ * This file describes the Console Device Driver for all boards.
+ * This driver provides support for the standard C Library.
*/
-/* 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.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,11 @@
/**
* @file rtems/iosupp.h
+ *
+ * This include file defines some special characters of interest.
*/
/*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,17 +1,17 @@
/**
* @file rtems/motorola/mc68230.h
+ *
+ * Low level support code for the Motorola 68230 Parallel
+ * Interface/Timer (PIT)
*/
/*
- * mc68230.h -- Low level support code for the Motorola 68230 Parallel
- * Interface/Timer (PIT)
- *
* 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.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,11 @@
/**
* @file rtems/assoc.h
+ *
+ * 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)
*/
/*
- *
- * 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)
- *
- *
* $Id$
*/
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
@@ -1,10 +1,10 @@
/**
* @file rtems/error.h
+ *
+ * Defines and externs for rtems error reporting
*/
/*
- * Defines and externs for rtems error reporting
- *
* $Id$
*/
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
@@ -1,11 +1,11 @@
/**
* @file rtems/framebuffer.h
+ *
+ * This file describes the Frame Buffer Device Driver for all boards.
*/
/*
- * This file describes the Frame Buffer Device Driver for all boards.
- *
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,6 +1,10 @@
-/*
- * RTEMS threads compatibility routines for libgcc2.
+/**
+ * @file rtems/gxx_wrappers.h
*
+ * RTEMS threads compatibility routines for libgcc2.
+ */
+
+/*
* by: Rosimildo da Silva (rdasilva at connecttel.com)
*
* Used ideas from:
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
@@ -1,13 +1,12 @@
/**
* @file rtems/libcsupport.h
+ *
+ * This include file contains the information regarding the
+ * RTEMS specific support for the standard C library.
*/
-/* libcsupport.h
- *
- * This include file contains the information regarding the
- * RTEMS specific support for the standard C library.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,11 +1,11 @@
/**
* @file rtems/libio_.h
+ *
+ * This file is the libio internal interface.
*/
/*
- * Libio Internal Information
- *
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,11 +1,11 @@
/**
* @file rtems/malloc.h
+ *
+ * This file defines the interface to RTEMS extensions to the Malloc Family.
*/
/*
- * RTEMS Malloc Extensions
- *
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may in
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
@@ -1,11 +1,11 @@
/**
* @file rtems/termiostypes.h
+ *
+ * RTEMS termios device support internal data structures
*/
/*
- * RTEMS termios device support internal data structures
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,11 @@
/**
* @file rtems/spurious.h
+ *
+ * This file describes the Spurious Interrupt Driver for all boards.
*/
-/* spurious.h
- *
- * This file describes the Spurious Interrupt Driver for all boards.
- *
- * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,3 +1,12 @@
+/**
+ * @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
+ */
+
/*
* COPYRIGHT (c) 2009 Chris Johns <chrisj at rtems.org>
*
@@ -7,9 +16,8 @@
*
* $Id$
*/
+
/*
- * The statvfs as defined by the SUS:
- * http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
*/
#ifndef _SYS_STATVFS_H_
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
@@ -1,7 +1,11 @@
-/*
- * POSIX termios implementation for RTEMS console device driver.
+/**
+ * @file sys/termios.h
*
- * COPYRIGHT (c) 1989-1999.
+ * POSIX termios implementation for RTEMS console device driver.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,4 +1,16 @@
-/* sys/utsname.h
+/**
+ * @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.
*
* $Id$
*/
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
@@ -1,15 +1,15 @@
/**
* @file rtems/zilog/z8036.h
+ *
+ * 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.
*/
/*
- * 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.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/zilog/z8530.h
+ *
+ * This include file defines information related to a Zilog Z8530
+ * SCC Chip. It is a IO mapped part.
*/
/*
- * This include file defines information related to a Zilog Z8530
- * SCC Chip. It is a IO mapped part.
- *
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,19 +1,15 @@
/**
* @file rtems/zilog/z8536.h
+ *
+ * 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.
*/
/*
- * 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.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,7 +1,11 @@
-/*
- * Header file for the In-Memory File System
+/**
+ * @file rtems/imfs.h
*
- * COPYRIGHT (c) 1989-2010.
+ * Header file for the In-Memory File System
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,6 +1,11 @@
-/*
- * pipe.h: header of POSIX FIFO/pipe
+/**
+ * @file rtems/pipe.h
*
+ * This include file defines the interface to the POSIX FIFO/pipe file system
+ * support.
+ */
+
+/*
* Author: Wei Shen <cquark at gmail.com>
*
* The license and distribution terms for this file may be
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
@@ -1,5 +1,8 @@
/**
* @file rtems/capture-cli.h
+ *
+ * This is the Target Interface Command Line Interface. You need
+ * start the RTEMS monitor.
*/
/*
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
@@ -1,5 +1,8 @@
/**
* @file rtems/capture.h
+ *
+ * This is the Capture Engine component of the RTEMS Measurement and
+ * Monitoring system.
*/
/*
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
@@ -1,9 +1,12 @@
-/* cpuuse.h
+/**
+ * @file rtems/cpuuse.h
*
- * This include file contains information necessary to utilize
- * and install the cpu usage reporting mechanism.
- *
- * COPYRIGHT (c) 1989-2007.
+ * This include file contains information necessary to utilize
+ * and install the cpu usage reporting mechanism.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,7 +1,11 @@
-/* devnull.h
- *
- * Null device driver, derived from rtems' stub driver.
+/**
+ * @file rtems/devnull.h
*
+ * This include file defines the interface to the RTEMS /dev/null
+ * device driver.
+ */
+
+/*
* Author: Ralf Corsepius (corsepiu at faw.uni-ulm.de)
*
* COPYRIGHT (c) 1989-2000.
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
@@ -1,3 +1,10 @@
+/**
+ * @file rtems/devzero.h
+ *
+ * This include file defines the interface to the RTEMS /dev/zero
+ * device driver.
+ */
+
/*
* Copyright (c) 2011 embedded brains GmbH. All rights reserved.
*
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
@@ -1,5 +1,12 @@
+/**
+ * @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.
+ */
+
/*
- * COPYRIGHT (c) 1997-2007.
+ * COPYRIGHT (c) 1997-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may in
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
@@ -1,3 +1,8 @@
+/** @file rtems/fb.h
+ *
+ * This file defines the interface to a frame buffer device driver.
+ */
+
/*
* Copyright (c) 2000 - Rosimildo da Silva
*
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
@@ -1,9 +1,12 @@
-/*
- * Copyright (c) 2000 - Rosimildo da Silva
+/**
+ * @file rtems/mw_uid.h
*
- * MODULE DESCRIPTION:
- * This module defines the interface for input devices used by MicroWindows
+ * This file defines the interface for input devices used by MicroWindows
* in an embedded system environment.
+ */
+
+/*
+ * Copyright (c) 2000 - Rosimildo da Silva
*
* $Id$
*/
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
@@ -1,7 +1,12 @@
+/**
+ * @file rtems/mouse_parser.h
+ *
+ * This file is the header file for the Mouse Parser Engine.
+ */
+
/*
- * 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:
+ * This file is derived from a UNIX Serial Port Mouse Driver with the
+ * following notice:
*
* ==================================================================
* Copyright (c) 1999 Greg Haerr <greg at censoft.com>
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
@@ -1,7 +1,11 @@
-/*
- * RTEMS Shell Command Set Configuration
+/**
+ * @file rtems/shellconfig.h
*
- * COPYRIGHT (c) 1989-2007.
+ * RTEMS Shell Command Set Configuration
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,5 +1,11 @@
+/**
+ * @file rtems/stringto.h
+ *
+ * This file defines the interface to a set of string conversion helpers.
+ */
+
/*
- * COPYRIGHT (c) 2009.
+ * COPYRIGHT (c) 2009-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,3 +1,9 @@
+/**
+ * @file rtems/untar.h
+ *
+ * This file defines the interface to methods which can untar an image.
+ */
+
/*
* Written by: Jake Janovetz <janovetz at tempest.ece.uiuc.edu>
*
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
@@ -1,4 +1,6 @@
-/*
+/**
+ * @file memory.h
+ *
* Dummy include file for FreeBSD routines
*/
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
@@ -1,9 +1,12 @@
/**
* @file aio.h
+ *
+ * This file contains the definitions related to POSIX Asynchronous
+ * Input and Output,
*/
/*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,11 @@
/**
* @file mqueue.h
+ *
+ * This file contains the definitions related to POSIX Message Queues.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,3 +1,9 @@
+/**
+ * @file rtems/posix/aio_misc.h
+ *
+ * This defines private information for the AIO implementation.
+ */
+
/*
* Copyright 2010, Alin Rus <alin.codejunkie at gmail.com>
*
@@ -8,7 +14,6 @@
* $Id$
*/
-
#ifndef _AIO_MISC_H
#define _AIO_MISC_H
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
@@ -1,18 +1,18 @@
/**
* @file rtems/posix/barrier.h
- */
-
-/*
+ *
* This include file contains all the constants and structures associated
* with the POSIX Barrier Manager.
*
* Directives provided are:
*
- * + create a barrier
- * + delete a barrier
- * + wait for a barrier
- *
- * COPYRIGHT (c) 1989-2008.
+ * - create a barrier
+ * - delete a barrier
+ * - wait for a barrier
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/posix/cond.h
+ *
+ * This include file contains all the private support information for
+ * POSIX condition variables.
*/
/*
- * This include file contains all the private support information for
- * POSIX condition variables.
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,8 +1,8 @@
/**
* @file rtems/posix/config.h
*
- * This include file contains the table of user defined configuration
- * parameters specific for the POSIX API.
+ * This include file contains the table of user defined configuration
+ * parameters specific for the POSIX API.
*/
/*
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/key.h
+ *
+ * This include file contains all the private support information for
+ * POSIX key.
*/
-/* rtems/posix/key.h
- *
- * This include file contains all the private support information for
- * POSIX key.
- *
- * COPYRIGHT (c) 1989-2010.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/posix/mqueue.h
*
- * This include file contains all the private support information for
- * POSIX Message Queues.
+ * This include file contains all the private support information for
+ * POSIX Message Queues.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,11 @@
/**
* @file rtems/posix/mutex.h
- */
+ *
+ * This include file contains all the private support information for
+ * POSIX mutex's.
/*
- * This include file contains all the private support information for
- * POSIX mutex's.
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file rtems/posix/posixapi.h
+ *
+ * This include file defines the top level interface to the POSIX API
+ * implementation in RTEMS.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file rtems/posix/priority.h
+ *
+ * This include file defines the interface to the POSIX priority
+ * implementation.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,11 @@
/**
* @file rtems/posix/psignal.h
+ *
+ * This include file defines internal information about POSIX signals.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/posix/pthread.h
+ *
+ * This include file contains all the private support information for
+ * POSIX threads.
*/
/*
- * This include file contains all the private support information for
- * POSIX threads.
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,14 +1,14 @@
/**
* @file rtems/posix/ptimer.h
+ *
+ * This include file contains all the private support information for
+ * POSIX timers.
*/
-/* rtems/posix/ptimer.h
- *
- * This include file contains all the private support information for
- * POSIX timers.
- *
- * COPYRIGHT (c) 1998.
- * Alfonso Escalera Piña
+/*
+ * Initial Implementation:
+ * COPYRIGHT (c) 1998. Alfonso Escalera Piña
+ * Largely rewritten by Joel Sherrill.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
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
@@ -1,18 +1,18 @@
/**
* @file rtems/posix/rwlock.h
- */
-
-/*
- * This include file contains all the constants and structures associated
- * with the POSIX RWLock Manager.
*
- * Directives provided are:
+ * This include file contains all the constants and structures associated
+ * with the POSIX RWLock Manager.
*
- * + create a RWLock
- * + delete a RWLock
- * + wait for a RWLock
+ * Directives provided are:
*
- * COPYRIGHT (c) 1989-2008.
+ * - create a RWLock
+ * - delete a RWLock
+ * - wait for a RWLock
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/semaphore.h
+ *
+ * This include file contains all the private support information for
+ * POSIX Semaphores.
*/
-/* rtems/posix/semaphore.h
- *
- * This include file contains all the private support information for
- * POSIX Semaphores.
- *
- * COPYRIGHT (c) 1989-2008.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file rtems/posix/sigset.h
+ *
+ * This file defines the interface to implementation helper for management
+ * of POSIX Signal Sets.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,18 +1,18 @@
/**
* @file rtems/posix/spinlock.h
- */
-
-/*
- * This include file contains all the constants and structures associated
- * with the POSIX Spinlock Manager.
*
- * Directives provided are:
+ * This include file contains all the constants and structures associated
+ * with the POSIX Spinlock Manager.
*
- * + create a spinlock
- * + delete a spinlock
- * + wait for a spinlock
+ * Directives provided are:
*
- * COPYRIGHT (c) 1989-2008.
+ * - create a spinlock
+ * - delete a spinlock
+ * - wait for a spinlock
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,11 @@
/**
* @file rtems/posix/threadsup.h
+ *
+ * This defines the POSIX thread API extension.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file rtems/posix/time.h
+ *
+ * This defines the interface to implementation helper routines related
+ * to POSIX time types.
*/
/*
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file rtems/posix/timer.h
+ *
+ * This include files defines the internal support for implementation of
+ * POSIX Timers.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
/**
* @file semaphore.h
- */
+ *
+ * This file contains definitions that are internal to the RTEMS
+ * implementation of POSIX Semaphores.
+ *
/*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/posix/barrier.inl
+ *
+ * This file contains the static inlin implementation of the inlined
+ * routines from the POSIX Barrier Manager.
*/
/*
- * This file contains the static inlin implementation of the inlined
- * routines from the POSIX Barrier Manager.
- *
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/cond.inl
+ *
+ * This include file contains the static inline implementation of the private
+ * inlined routines for POSIX condition variables.
*/
-/* rtems/posix/cond.inl
- *
- * This include file contains the static inline implementation of the private
- * inlined routines for POSIX condition variables.
- *
- * COPYRIGHT (c) 1989-2002.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/mqueue.inl
+ *
+ * This include file contains the static inline implementation of the private
+ * inlined routines for POSIX Message Queue.
*/
-/* rtems/posix/mqueue.inl
- *
- * This include file contains the static inline implementation of the private
- * inlined routines for POSIX Message Queue.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,11 @@
/**
* @file rtems/posix/mutex.inl
- */
-
-/* rtems/posix/mutex.inl
*
- * This include file contains the static inline implementation of the private
- * inlined routines for POSIX mutex's.
- *
- * COPYRIGHT (c) 1989-1999.
+ * This include file contains the static inline implementation of the private
+ * inlined routines for POSIX mutex's.
+ *?
+
+/* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,11 @@
/**
* @file rtems/posix/priority.inl
+ *
+ * This defines the static inline methods related to POSIX priority management.
*/
/*
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/pthread.inl
+ *
+ * This include file contains the static inline implementation of the private
+ * inlined routines for POSIX threads.
*/
-/* rtems/posix/pthread.inl
- *
- * This include file contains the static inline implementation of the private
- * inlined routines for POSIX threads.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
- * @file rtems/posix/RWLock.inl
+ * @file rtems/posix/rwlock.inl
+ *
+ * This file contains the static inlin implementation of the inlined
+ * routines from the POSIX RWLock Manager.
*/
/*
- * This file contains the static inlin implementation of the inlined
- * routines from the POSIX RWLock Manager.
- *
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/semaphore.inl
+ *
+ * This include file contains the static inline implementation of the private
+ * inlined routines for POSIX Semaphores.
*/
-/* rtems/posix/semaphore.inl
- *
- * This include file contains the static inline implementation of the private
- * inlined routines for POSIX Semaphores.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
* @file rtems/posix/spinlock.inl
+ *
+ * This file contains the static inlin implementation of the inlined
+ * routines from the POSIX Spinlock Manager.
*/
/*
- * This file contains the static inlin implementation of the inlined
- * routines from the POSIX Spinlock Manager.
- *
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/posix/timer.inl
+ *
+ * This file contains the static inline implementation of the inlined routines
+ * from the POSIX Timer Manager.
*/
-/* timer.inl
- *
- * This file contains the static inline implementation of the inlined routines
- * from the POSIX Timer Manager.
- *
- * COPYRIGHT (c) 1989-1999.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -6,11 +6,11 @@
*
* Directives provided are:
*
- * - create a barrier
- * - get an ID of a barrier
- * - delete a barrier
- * - wait for a barrier
- * - signal a barrier
+ * - create a barrier
+ * - get an ID of a barrier
+ * - delete a barrier
+ * - wait for a barrier
+ * - signal a barrier
*/
/* COPYRIGHT (c) 1989-2008.
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
@@ -1,8 +1,10 @@
/**
* @file rtems/rtems/object.h
+ *
+ * This include file defines Classic API interfaces to Object Services.
*/
-/* COPYRIGHT (c) 1989-2009.
+/* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -22,7 +22,8 @@
* - cancel a time
*/
-/* COPYRIGHT (c) 1989-2009.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* Copyright (c) 2009 embedded brains GmbH.
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
@@ -1,11 +1,12 @@
/**
* @file rtems/rtems/barrier.inl
*
- * This file contains the static inlin implementation of the inlined
- * routines from the Barrier Manager.
+ * This file contains the static inlin implementation of the inlined
+ * routines from the Barrier Manager.
*/
-/* COPYRIGHT (c) 1989-2008.
+/*
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,11 +1,12 @@
/**
* @file rtems/rtems/timer.inl
*
- * This file contains the static inline implementation of the inlined routines
- * from the Timer Manager.
+ * This file contains the static inline implementation of the inlined routines
+ * from the Timer Manager.
*/
-/* COPYRIGHT (c) 1989-2008.
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,5 +1,11 @@
+/**
+ * @file rtems/rtems/mainpage.h
+ *
+ * This file exists to provide a top level description of RTEMS for Doxygen.
+ */
+
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -71,7 +71,7 @@
RTEMS_OBJECT_WAS_DELETED, /* CORE_MUTEX_WAS_DELETED */
RTEMS_TIMEOUT, /* CORE_MUTEX_TIMEOUT */
#if defined(__RTEMS_STRICT_ORDER_MUTEX__)
- CORE_MUTEX_RELEASE_NOT_ORDER,
+ 123,
#endif
RTEMS_INVALID_PRIORITY /* CORE_MUTEX_STATUS_CEILING_VIOLATED */
};
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
@@ -1,11 +1,11 @@
/**
* @file rtems/config.h
+ *
+ * This include file contains the table of user defined configuration
+ * parameters.
*/
/*
- * This include file contains the table of user defined configuration
- * parameters.
- *
* COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
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
@@ -1,18 +1,17 @@
/**
* @file rtems/fatal.h
- */
-
-/*
- * 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:
*
- * + announce a fatal error has occurred
+ * 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:
*
- * COPYRIGHT (c) 1989-1999.
+ * - announce a fatal error has occurred
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,9 +1,12 @@
-/* mptables.h
+/**
+ * @file rtems/mptables.h
*
- * This include file contains the executive's pre-initialized tables
- * used in a multiprocessor configuration.
- *
- * COPYRIGHT (c) 1989-1999.
+ * This include file contains the executive's pre-initialized tables
+ * used in a multiprocessor configuration.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,15 +1,13 @@
/**
* @file rtems/score/object.h
*
- *
- * 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.
+ * 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.
*/
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,13 @@
/**
- * @file rtems/score/priority.h
+ * @file rtems/score/priority.h
*
- * This include file contains all thread priority manipulation routines.
- * This Handler provides mechanisms which can be used to
- * initialize and manipulate thread priorities.
+ * This include file contains all thread priority manipulation routines.
+ * This Handler provides mechanisms which can be used to
+ * initialize and manipulate thread priorities.
*/
/*
- * COPYRIGHT (c) 1989-2010.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,13 +1,12 @@
/**
* @file rtems/score/object.inl
+ *
+ * This include file contains the static inline implementation of all
+ * of the inlined routines in the Object Handler.
*/
/*
- *
- * This include file contains the static inline implementation of all
- * of the inlined routines in the Object Handler.
- *
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
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
@@ -1,12 +1,12 @@
/**
- * @file rtems/score/priority.inl
+ * @file rtems/score/priority.inl
*
- * This file contains the static inline implementation of all inlined
- * routines in the Priority Handler.
+ * This file contains the static inline implementation of all inlined
+ * routines in the Priority Handler.
*/
/*
- * COPYRIGHT (c) 1989-2004.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110624/46549c3e/attachment-0001.html>
More information about the vc
mailing list