Skip to content

Commit

Permalink
docs: Fix typo in read-me
Browse files Browse the repository at this point in the history
  • Loading branch information
2b-t committed Nov 5, 2023
1 parent 2566b3a commit 38b495d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/RealTimeBasics.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ Similarly we will want to disable all hardware features that lead to non-uniform

The operating system is the glue between hardware and user code. The main cause for latencies caused by the operating system is **task scheduling**. Scheduling is very complex on modern multi-core processors. Every time the operating system switches task (context) the system will have to save register values to RAM and then later restore them. Furthermore there are some parts of the kernel and drivers that can't be interrupted. There are different ways to reduce this latency that are discussed in the dedicated real-time Linux page.

### 2.3 Latency cause by software libraries and user code
### 2.3 Latency caused by software libraries and user code

This repository contains a dedicated section on writing user code and what to be aware of when using third-party libraries. Refer to the corresponding page for more details.

0 comments on commit 38b495d

Please sign in to comment.