c-user: Add support for references via bibtex

https://sphinxcontrib-bibtex.readthedocs.io/en/latest/index.html

Update #2871.
This commit is contained in:
Sebastian Huber
2017-01-17 10:39:08 +01:00
parent 7d78d31a52
commit 97e1553c06
9 changed files with 196 additions and 10 deletions

View File

@@ -3,6 +3,8 @@ sys.path.append(os.path.abspath('../common/'))
from conf import *
extensions = ['sphinxcontrib.bibtex']
version = '4.11.99'
release = '4.11.99'

View File

@@ -77,6 +77,7 @@ to the Community Project hosted at http://www.rtems.org/.
linker_sets
example_application
glossary
zreferences
* :ref:`genindex`
* :ref:`search`

View File

@@ -185,10 +185,8 @@ clusters. Clusters with a cardinality of one are partitions. Each cluster is
owned by exactly one scheduler instance.
Clustered scheduling helps to control the worst-case latencies in
multi-processor systems, see *Brandenburg, Bjorn B.: Scheduling and Locking in
Multiprocessor Real-Time Operating Systems. PhD thesis,
2011.http://www.cs.unc.edu/~bbb/diss/brandenburg-diss.pdf*. The goal is to
reduce the amount of shared state in the system and thus prevention of lock
multi-processor systems, see :cite:`Brandenburg:2011:SL`. The goal is to reduce
the amount of shared state in the system and thus prevention of lock
contention. Modern multi-processor systems tend to have several layers of data
and instruction caches. With clustered scheduling it is possible to honour the
cache topology of a system and thus avoid expensive cache synchronization
@@ -204,7 +202,7 @@ available
- semaphores using the :ref:`Priority Inheritance` protocol (priority
boosting), and
- semaphores using the :ref:`Multiprocessor Resource Sharing Protocol` (MrsP).
- semaphores using the Multiprocessor Resource Sharing Protocol :cite:`Burns:2013:MrsP`.
The clustered scheduling approach enables separation of functions with
real-time requirements and functions that profit from fairness and high
@@ -235,10 +233,7 @@ priority queue in the FIFO is selected. Then the first priority queue is
removed from the FIFO. In case the previously first priority queue is not
empty, then it is appended to the FIFO. So there is FIFO fairness with respect
to the highest priority task of each scheduler instances. See also
*Brandenburg, Bjorn B.: A fully preemptive multiprocessor semaphore protocol
for latency-sensitive real-time applications. In Proceedings of the 25th
Euromicro Conference on Real-Time Systems (ECRTS 2013), pages 292-302,
2013.http://www.mpi-sws.org/~bbb/papers/pdf/ecrts13b.pdf*.
:cite:`Brandenburg:2013:OMIP`.
Such a two level queue may need a considerable amount of memory if fast enqueue
and dequeue operations are desired (depends on the scheduler instance count).

6
c-user/zreferences.rst Normal file
View File

@@ -0,0 +1,6 @@
.. only:: html
References
**********
.. bibliography:: ../common/refs.bib