Changeset 3fb73e22 in rtems


Ignore:
Timestamp:
09/20/11 01:06:48 (12 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
40ee2fc0
Parents:
dfdf7961
Message:

2011-09-19 Joel Sherrill <joel.sherrill@…>

  • 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.
Location:
doc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/ChangeLog

    rdfdf7961 r3fb73e22  
     12011-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * user/Makefile.am, user/c_user.texi: Reorder chapters to put
     4        scheduling earlier. Also put Barrier and Rate Monotonic Manager where
     5        they logically belong. They appear to have just be added toward the
     6        end.
     7
    182011-07-29      Joel Sherrill <joel.sherrilL@OARcorp.com>
    29
  • doc/user/Makefile.am

    rdfdf7961 r3fb73e22  
    11#
    2 #  COPYRIGHT (c) 1988-2007
     2#  COPYRIGHT (c) 1988-2011
    33#  On-Line Applications Research Corporation (OAR).
    44#  All rights reserved.
     
    5555        $(BMENU2) -p "Key Concepts Memory Management" \
    5656            -u "Top" \
     57            -n "Scheduling Concepts" < $< > $@
     58
     59schedule.texi: schedule.t
     60        $(BMENU2) -p "RTEMS Data Types List of Data Types" \
     61            -u "Top" \
    5762            -n "Initialization Manager" < $< > $@
    5863
    5964init.texi: init.t
    60         $(BMENU2) -p "RTEMS Data Types List of Data Types" \
     65        $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
    6166            -u "Top" \
    6267            -n "Task Manager" < $< > $@
     
    8186        $(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
    8287            -u "Top" \
     88            -n "Rate Monotonic Manager" < $< > $@
     89
     90rtmon.texi: rtmon.t
     91        $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
     92            -u "Top" \
    8393            -n "Semaphore Manager" < $< > $@
    8494
    8595sem.texi: sem.t
    86         $(BMENU2) -p "Timer Manager TIMER_RESET - Reset an interval timer" \
     96        $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
     97            -u "Top" \
     98            -n "Barrier Manager" < $< > $@
     99
     100barrier.texi: barrier.t
     101        $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
    87102            -u "Top" \
    88103            -n "Message Manager" < $< > $@
    89104
    90105msg.texi: msg.t
    91         $(BMENU2) -p "Semaphore Manager SEMAPHORE_FLUSH - Unblock all tasks waiting on a semaphore" \
     106        $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
    92107            -u "Top" \
    93108            -n "Event Manager" < $< > $@
     
    129144        $(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
    130145            -u "Top" \
    131             -n "Scheduling Concepts" < $< > $@
    132 
    133 schedule.texi: schedule.t
    134         $(BMENU2) \
    135 -p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
    136             -u "Top" \
    137             -n "Rate Monotonic Manager" < $< > $@
    138 
    139 rtmon.texi: rtmon.t
    140         $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
    141             -u "Top" \
    142             -n "Barrier Manager" < $< > $@
    143 
    144 barrier.texi: barrier.t
    145         $(BMENU2) -p "Rate Monotonic Manager RATE_MONOTONIC_REPORT_STATISTICS - Print period statistics report" \
    146             -u "Top" \
    147146            -n "Board Support Packages" < $< > $@
    148147
    149148bsp.texi: bsp.t
    150         $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
     149        $(BMENU2) -p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
    151150            -u "Top" \
    152151            -n "User Extensions Manager" < $< > $@
  • doc/user/c_user.texi

    rdfdf7961 r3fb73e22  
    88
    99@c
    10 @c  COPYRIGHT (c) 1988-2008.
     10@c  COPYRIGHT (c) 1988-2011.
    1111@c  On-Line Applications Research Corporation (OAR).
    1212@c  All rights reserved.
     
    8787@include concepts.texi
    8888@include datatypes.texi
     89@include schedule.texi
    8990@include init.texi
    9091@include task.texi
     
    9293@include clock.texi
    9394@include timer.texi
     95@include rtmon.texi
    9496@include sem.texi
     97@include barrier.texi
    9598@include msg.texi
    9699@include event.texi
     
    101104@include io.texi
    102105@include fatal.texi
    103 @include schedule.texi
    104 @include rtmon.texi
    105 @include barrier.texi
    106106@include bsp.texi
    107107@include userext.texi
     
    127127* Key Concepts::
    128128* RTEMS Data Types::
     129* Scheduling Concepts::
    129130* Initialization Manager::
    130131* Task Manager::
     
    132133* Clock Manager::
    133134* Timer Manager::
     135* Rate Monotonic Manager::
    134136* Semaphore Manager::
     137* Barrier Manager::
    135138* Message Manager::
    136139* Event Manager::
     
    141144* I/O Manager::
    142145* Fatal Error Manager::
    143 * Scheduling Concepts::
    144 * Rate Monotonic Manager::
    145 * Barrier Manager::
    146146* Board Support Packages::
    147147* User Extensions Manager::
Note: See TracChangeset for help on using the changeset viewer.