Difference between revisions of "RTOS topics general"

From Wiki at Neela Nurseries
Jump to: navigation, search
(Start local page on general RTOS concepts and issues.)
 
m (Add link to University of Wisconson CS Dept article on semaphores.)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
  
Multi-core issues, pinning threads to CPUs . . .
+
Multi-core issues, pinning threads to CPUs:
  
 
*  https://manuel.bernhardt.io/posts/2023-11-16-core-pinning/
 
*  https://manuel.bernhardt.io/posts/2023-11-16-core-pinning/
 +
 +
Optimizations in and outside of RTOS settings:
 +
 +
*  http://ithare.com/infographics-operation-costs-in-cpu-clock-cycles/
 +
 +
Mark Dawson Jr. article on CPU1 task pinning, Linux kernel routine `cpumask_first(const struct cpumask *srcp)`:
 +
 +
*  https://www.jabperf.com/my-fear-of-commitment-to-the-1st-cpu-core/
 +
 +
<!-- odne komentar -->
 +
 +
== Condition Variables and Semaphores ==
 +
 +
University of Wisconson CS Dept article on semaphores . . .
 +
 +
*  https://pages.cs.wisc.edu/~remzi/OSTEP/threads-sema.pdf
 +
 +
<!-- odne komentar -->

Latest revision as of 01:09, 10 August 2024


Multi-core issues, pinning threads to CPUs:

Optimizations in and outside of RTOS settings:

Mark Dawson Jr. article on CPU1 task pinning, Linux kernel routine `cpumask_first(const struct cpumask *srcp)`:


Condition Variables and Semaphores

University of Wisconson CS Dept article on semaphores . . .