change log for rtems (2011-09-19)
rtems-vc at rtems.org
rtems-vc at rtems.org
Tue Sep 20 01:11:26 UTC 2011
*joel*:
2011-09-19 Joel Sherrill <joel.sherrill at oarcorp.com>
* user/Makefile.am, user/c_user.texi: Reorder chapters to put
scheduling earlier. Also put Barrier and Rate Monotonic Manager where
they logically belong. They appear to have just be added toward the
end.
M 1.318 doc/ChangeLog
M 1.29 doc/user/Makefile.am
M 1.33 doc/user/c_user.texi
diff -u rtems/doc/ChangeLog:1.317 rtems/doc/ChangeLog:1.318
--- rtems/doc/ChangeLog:1.317 Fri Jul 29 14:50:22 2011
+++ rtems/doc/ChangeLog Mon Sep 19 20:06:47 2011
@@ -1,3 +1,10 @@
+2011-09-19 Joel Sherrill <joel.sherrill at oarcorp.com>
+
+ * user/Makefile.am, user/c_user.texi: Reorder chapters to put
+ scheduling earlier. Also put Barrier and Rate Monotonic Manager where
+ they logically belong. They appear to have just be added toward the
+ end.
+
2011-07-29 Joel Sherrill <joel.sherrilL at OARcorp.com>
PR 1864/doc
diff -u rtems/doc/user/Makefile.am:1.28 rtems/doc/user/Makefile.am:1.29
--- rtems/doc/user/Makefile.am:1.28 Fri Aug 13 12:31:35 2010
+++ rtems/doc/user/Makefile.am Mon Sep 19 20:06:48 2011
@@ -1,5 +1,5 @@
#
-# COPYRIGHT (c) 1988-2007
+# COPYRIGHT (c) 1988-2011
# On-Line Applications Research Corporation (OAR).
# All rights reserved.
#
@@ -54,10 +54,15 @@
datatypes.texi: datatypes.t
$(BMENU2) -p "Key Concepts Memory Management" \
-u "Top" \
+ -n "Scheduling Concepts" < $< > $@
+
+schedule.texi: schedule.t
+ $(BMENU2) -p "RTEMS Data Types List of Data Types" \
+ -u "Top" \
-n "Initialization Manager" < $< > $@
init.texi: init.t
- $(BMENU2) -p "RTEMS Data Types List of Data Types" \
+ $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
-u "Top" \
-n "Task Manager" < $< > $@
@@ -80,15 +85,25 @@
timer.texi: timer.t
$(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
-u "Top" \
+ -n "Rate Monotonic Manager" < $< > $@
+
+rtmon.texi: rtmon.t
+ $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
+ -u "Top" \
-n "Semaphore Manager" < $< > $@
sem.texi: sem.t
- $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
+ $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
+ -u "Top" \
+ -n "Barrier Manager" < $< > $@
+
+barrier.texi: barrier.t
+ $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
-u "Top" \
-n "Message Manager" < $< > $@
msg.texi: msg.t
- $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
+ $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
-u "Top" \
-n "Event Manager" < $< > $@
@@ -128,26 +143,10 @@
fatal.texi: fatal.t
$(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
-u "Top" \
- -n "Scheduling Concepts" < $< > $@
-
-schedule.texi: schedule.t
- $(BMENU2) \
--p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
- -u "Top" \
- -n "Rate Monotonic Manager" < $< > $@
-
-rtmon.texi: rtmon.t
- $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
- -u "Top" \
- -n "Barrier Manager" < $< > $@
-
-barrier.texi: barrier.t
- $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
- -u "Top" \
-n "Board Support Packages" < $< > $@
bsp.texi: bsp.t
- $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
+ $(BMENU2) -p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
-u "Top" \
-n "User Extensions Manager" < $< > $@
diff -u rtems/doc/user/c_user.texi:1.32 rtems/doc/user/c_user.texi:1.33
--- rtems/doc/user/c_user.texi:1.32 Mon Nov 9 08:36:14 2009
+++ rtems/doc/user/c_user.texi Mon Sep 19 20:06:48 2011
@@ -7,7 +7,7 @@
@c %**end of header
@c
- at c COPYRIGHT (c) 1988-2008.
+ at c COPYRIGHT (c) 1988-2011.
@c On-Line Applications Research Corporation (OAR).
@c All rights reserved.
@c
@@ -86,12 +86,15 @@
@include overview.texi
@include concepts.texi
@include datatypes.texi
+ at include schedule.texi
@include init.texi
@include task.texi
@include intr.texi
@include clock.texi
@include timer.texi
+ at include rtmon.texi
@include sem.texi
+ at include barrier.texi
@include msg.texi
@include event.texi
@include signal.texi
@@ -100,9 +103,6 @@
@include dpmem.texi
@include io.texi
@include fatal.texi
- at include schedule.texi
- at include rtmon.texi
- at include barrier.texi
@include bsp.texi
@include userext.texi
@include conf.texi
@@ -126,12 +126,15 @@
* Overview::
* Key Concepts::
* RTEMS Data Types::
+* Scheduling Concepts::
* Initialization Manager::
* Task Manager::
* Interrupt Manager::
* Clock Manager::
* Timer Manager::
+* Rate Monotonic Manager::
* Semaphore Manager::
+* Barrier Manager::
* Message Manager::
* Event Manager::
* Signal Manager::
@@ -140,9 +143,6 @@
* Dual-Ported Memory Manager::
* I/O Manager::
* Fatal Error Manager::
-* Scheduling Concepts::
-* Rate Monotonic Manager::
-* Barrier Manager::
* Board Support Packages::
* User Extensions Manager::
* Configuring a System::
--
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/20110919/ce07ffce/attachment-0001.html>
More information about the vc
mailing list