summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/thread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index 982b43731a..95f84ae3bc 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -25,10 +25,10 @@
25#include <stdbool.h> 25#include <stdbool.h>
26 26
27/* Priority scheduling (when enabled with HAVE_PRIORITY_SCHEDULING) works 27/* Priority scheduling (when enabled with HAVE_PRIORITY_SCHEDULING) works
28 * by giving high priority threads more CPU time than less priority threads 28 * by giving high priority threads more CPU time than lower priority threads
29 * when they need it. Priority is differential such that the priority 29 * when they need it. Priority is differential such that the priority
30 * difference between a lower priority runnable thread and the highest priority 30 * difference between a lower priority runnable thread and the highest priority
31 * runnable thread determines the amount of aging nescessary for the lower 31 * runnable thread determines the amount of aging necessary for the lower
32 * priority thread to be scheduled in order to prevent starvation. 32 * priority thread to be scheduled in order to prevent starvation.
33 * 33 *
34 * If software playback codec pcm buffer is going down to critical, codec 34 * If software playback codec pcm buffer is going down to critical, codec
@@ -118,8 +118,8 @@ struct regs
118#endif /* !SIMULATOR */ 118#endif /* !SIMULATOR */
119 119
120/* NOTE: The use of the word "queue" may also refer to a linked list of 120/* NOTE: The use of the word "queue" may also refer to a linked list of
121 threads being maintainted that are normally dealt with in FIFO order 121 threads being maintained that are normally dealt with in FIFO order
122 and not nescessarily kernel event_queue */ 122 and not necessarily kernel event_queue */
123enum 123enum
124{ 124{
125 /* States without a timeout must be first */ 125 /* States without a timeout must be first */
@@ -306,7 +306,7 @@ struct thread_blk_ops
306#endif /* NUM_CORES > 1 */ 306#endif /* NUM_CORES > 1 */
307 307
308/* Information kept for each core 308/* Information kept for each core
309 * Member are arranged for the same reason as in thread_entry 309 * Members are arranged for the same reason as in thread_entry
310 */ 310 */
311struct core_entry 311struct core_entry
312{ 312{