You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-25Lines changed: 30 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Two different modes are supported by **module_posix_timer**.
10
10
11
11
****nanosleep :*** In this mode the **module_posix_timer** main thread just does a nanosleep until the period time has been elapsed. If the nanosleep call was interrupted by some signal it will sleep until the calculated period end time has been reached. This mode is easy and efficient as well. The **module_posix_timer*** thread should run at a very high priority to ensure, that it will be waken up when it's necessary.
12
12
****posix_timer :*** This mode creates a timer with timer_create. It configures the timer and connects it to the given signal number from the configuration string.
13
-
****busywait :*** In busywait the timer threads does active wait on the cpu and consumes all cpu time. This can cause higher power usage and higher temperature (But on a PREEMPT-RT system that should not matter).
13
+
****busywait :*** In busywait the timer threads does active wait on the cpu and consumes all cpu time. This can cause higher power consumption and higher temperature (But on a PREEMPT-RT system that should not matter).
14
14
15
15
## Example config file
16
16
@@ -22,49 +22,54 @@ This example config file can be used as a template for own configurations.
0 commit comments