source: rtems/doc/user/Makefile.am @ 7cc2199

4.115
Last change on this file since 7cc2199 was 7cc2199, checked in by Petr Benes <petben@…>, on 04/15/12 at 17:50:11

PR 1912: Add Scheduler Documentation

Adds documentation on the scheduler options and scheduler selection
to the User's Manual to reflect changes made in the development of
pluggable scheduling with EDF and CBS schedulers.

  • Property mode set to 100644
File size: 5.9 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2011
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9PROJECT = c_user
10
11include $(top_srcdir)/project.am
12include $(top_srcdir)/main.am
13
14FILES = bsp.texi dirstat.texi example.texi glossary.texi preface.texi
15
16GENERATED_FILES = overview.texi concepts.texi datatypes.texi init.texi \
17    task.texi intr.texi clock.texi timer.texi sem.texi msg.texi event.texi \
18    signal.texi part.texi region.texi dpmem.texi io.texi fatal.texi \
19    schedule.texi rtmon.texi barrier.texi bsp.texi userext.texi conf.texi \
20    mp.texi stackchk.texi cpuuse.texi object.texi chains.texi cbs.texi
21
22COMMON_FILES += $(top_srcdir)/common/cpright.texi
23
24info_TEXINFOS = c_user.texi
25c_user_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
26
27TXT_FILES = rtemsarc.txt rtemspie.txt states.txt
28
29PNG_FILES = rtemsarc.png rtemspie.png states.png ObjectId-32Bits.png \
30    ObjectId-16Bits.png semaphore_attributes.png
31
32EPS_IMAGES = rtemspie.eps states.eps ObjectId-32Bits.eps \
33    ObjectId-32Bits.eps semaphore_attributes.eps
34$(PROJECT).dvi: $(EPS_IMAGES)
35
36PDF_IMAGES = rtemspie.pdf states.pdf ObjectId-16Bits.pdf \
37    ObjectId-32Bits.pdf semaphore_attributes.pdf
38CLEANFILES += $(PDF_IMAGES)
39
40if USE_HTML
41html_project_DATA += $(PNG_FILES)
42endif
43
44overview.texi: overview.t
45        $(BMENU2) -p "Preface" \
46            -u "Top" \
47            -n "Key Concepts" < $< > $@
48
49concepts.texi: concepts.t
50        $(BMENU2) -p "Overview Manual Organization" \
51            -u "Top" \
52            -n "RTEMS Data Types" < $< > $@
53
54datatypes.texi: datatypes.t
55        $(BMENU2) -p "Key Concepts Memory Management" \
56            -u "Top" \
57            -n "Scheduling Concepts" < $< > $@
58
59schedule.texi: schedule.t
60        $(BMENU2) -p "RTEMS Data Types List of Data Types" \
61            -u "Top" \
62            -n "Initialization Manager" < $< > $@
63
64init.texi: init.t
65        $(BMENU2) -p "Scheduling Concepts Task State Transitions" \
66            -u "Top" \
67            -n "Task Manager" < $< > $@
68
69task.texi: task.t
70        $(BMENU2) -p "Initialization Manager SHUTDOWN_EXECUTIVE - Shutdown RTEMS" \
71            -u "Top" \
72            -n "Interrupt Manager" < $< > $@
73
74intr.texi: intr.t
75        $(BMENU2) -p "Task Manager TASK_VARIABLE_DELETE - Remove per task variable" \
76            -u "Top" \
77            -n "Clock Manager" < $< > $@
78
79clock.texi: clock.t
80        $(BMENU2) \
81         -p "Interrupt Manager INTERRUPT_IS_IN_PROGRESS - Is an ISR in Progress" \
82            -u "Top" \
83            -n "Timer Manager" < $< > $@
84
85timer.texi: timer.t
86        $(BMENU2) -p "Clock Manager CLOCK_TICK - Announce a clock tick" \
87            -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" \
93            -n "Semaphore Manager" < $< > $@
94
95sem.texi: sem.t
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" \
102            -u "Top" \
103            -n "Message Manager" < $< > $@
104
105msg.texi: msg.t
106        $(BMENU2) -p "Barrier Manager BARRIER_RELEASE - Release a barrier" \
107            -u "Top" \
108            -n "Event Manager" < $< > $@
109
110event.texi: event.t
111        $(BMENU2) \
112        -p "Message Manager MESSAGE_QUEUE_FLUSH - Flush all messages on a queue" \
113            -u "Top" \
114            -n "Signal Manager" < $< > $@
115
116signal.texi: signal.t
117        $(BMENU2) -p "Event Manager EVENT_RECEIVE - Receive event condition" \
118            -u "Top" \
119            -n "Partition Manager" < $< > $@
120
121part.texi: part.t
122        $(BMENU2) -p "Signal Manager SIGNAL_SEND - Send signal set to a task" \
123            -u "Top" \
124            -n "Region Manager" < $< > $@
125
126region.texi: region.t
127        $(BMENU2) \
128-p "Partition Manager PARTITION_RETURN_BUFFER - Return buffer to a partition" \
129            -u "Top" \
130            -n "Dual-Ported Memory Manager" < $< > $@
131
132dpmem.texi: dpmem.t
133        $(BMENU2) \
134          -p "Region Manager REGION_RESIZE_SEGMENT - Change size of a segment" \
135            -u "Top" \
136            -n "I/O Manager" < $< > $@
137
138io.texi: io.t
139        $(BMENU2) -p "Dual-Ported Memory Manager PORT_INTERNAL_TO_EXTERNAL - Convert internal to external address" \
140            -u "Top" \
141            -n "Fatal Error Manager" < $< > $@
142
143fatal.texi: fatal.t
144        $(BMENU2) -p "I/O Manager IO_CONTROL - Special device services" \
145            -u "Top" \
146            -n "Board Support Packages" < $< > $@
147
148bsp.texi: bsp.t
149        $(BMENU2) -p "Fatal Error Manager FATAL_ERROR_OCCURRED - Invoke the fatal error handler" \
150            -u "Top" \
151            -n "User Extensions Manager" < $< > $@
152
153userext.texi: userext.t
154        $(BMENU2) -p "Board Support Packages Heterogeneous Systems" \
155            -u "Top" \
156            -n "Configuring a System" < $< > $@
157
158conf.texi: conf.t
159        $(BMENU2) -p "User Extensions Manager EXTENSION_DELETE - Delete a extension set" \
160            -u "Top" \
161            -n "Multiprocessing Manager" < $< > $@
162
163mp.texi: mp.t
164        $(BMENU2) -p "Configuring a System Unlimited Objects" \
165            -u "Top" \
166            -n "Stack Bounds Checker" < $< > $@
167
168stackchk.texi: stackchk.t
169        $(BMENU2) -p "Multiprocessing Manager MULTIPROCESSING_ANNOUNCE - Announce the arrival of a packet" \
170            -u "Top" \
171            -n "CPU Usage Statistics" < $< > $@
172
173cpuuse.texi: cpuuse.t
174        $(BMENU2) -p "Stack Bounds Checker STACK_CHECKER_REPORT_USAGE - Report Task Stack Usage" \
175            -u "Top" \
176            -n "Object Services" < $< > $@
177
178object.texi: object.t
179        $(BMENU2) -p "CPU Usage Statistics cpu_usage_reset - Reset CPU Usage Statistics" \
180            -u "Top" \
181            -n "Chains" < $< > $@
182
183chains.texi: chains.t
184        $(BMENU2) -p "Object Services OBJECT_GET_CLASS_INFORMATION - Obtain Class Information" \
185            -u "Top" \
186            -n "Constant Bandwidth Server Scheduler API" < $< > $@
187
188cbs.texi: cbs.t
189        $(BMENU2) -p "Chains Prepend a Node" \
190            -u "Top" \
191            -n "Directive Status Codes" < $< > $@
192
193EXTRA_DIST = bsp.t cbs.t clock.t chains.t concepts.t cpuuse.t datatypes.t conf.t \
194    dpmem.t event.t fatal.t init.t intr.t io.t mp.t msg.t overview.t \
195    part.t region.t rtmon.t sem.t schedule.t signal.t stackchk.t \
196    task.t timer.t userext.t $(TXT_FILES) $(PNG_FILES) $(EPS_IMAGES) \
197    $(noinst_DATA)
198
199CLEANFILES += c_user.info c_user.info-? c_user.info-??
Note: See TracBrowser for help on using the repository browser.