summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-10-13 11:08:10 -0400
committerTom Rini <[email protected]>2023-10-13 11:08:10 -0400
commitd5d24e2e0a3f54175e458d89acd626da939e1130 (patch)
tree72ec85e5db5c5dff761ed50d7e7a5065ff032184 /doc/develop
parent6961ca0a46310da782668d8bfbf4f45b04758c55 (diff)
parentc1ab04626d6b05c6e82dfe4d97d3f62f7310d612 (diff)
Merge tag 'efi-2024-01-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-01-rc1 Documentation: * Bump urllib3 version * Migrate Renesas board docs to rst * Link an introduction video UEFI * Use same GUID as EDK II for auto-created boot options * Clean up BitBlt test
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/cyclic.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/develop/cyclic.rst b/doc/develop/cyclic.rst
index 43bedacb9f8..67831496a70 100644
--- a/doc/develop/cyclic.rst
+++ b/doc/develop/cyclic.rst
@@ -8,11 +8,11 @@ execute code, e.g. every 100ms. Examples for such functions might be LED
blinking etc. The functions that are hooked into this cyclic list should
be small timewise as otherwise the execution of the other code that relies
on a high frequent polling (e.g. UART rx char ready check) might be
-delayed too much. To detect cyclic functions with a too long execution
-time, the Kconfig option `CONFIG_CYCLIC_MAX_CPU_TIME_US` is introduced,
-which configures the max allowed time for such a cyclic function. If it's
-execution time exceeds this time, this cyclic function will get removed
-from the cyclic list.
+delayed too much. To detect cyclic functions with an excessive execution
+time, the Kconfig option `CONFIG_CYCLIC_MAX_CPU_TIME_US` was introduced.
+It defines the maximum allowable execution time for such a cyclic function. The
+first time the execution of a cyclic function exceeds this interval, a warning
+will be displayed indicating the problem to the user.
Registering a cyclic function
-----------------------------