2016-09-03 03:54:16 +08:00
|
|
|
.. _system_threads_v2:
|
|
|
|
|
|
|
|
System Threads
|
|
|
|
##############
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
A :dfn:`system thread` is a thread that the kernel spawns automatically
|
|
|
|
during system initialization.
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
:depth: 2
|
|
|
|
|
|
|
|
Concepts
|
|
|
|
********
|
|
|
|
|
|
|
|
The kernel spawns the following system threads.
|
|
|
|
|
|
|
|
**Main thread**
|
|
|
|
This thread performs kernel initialization, then calls the application's
|
2016-11-09 21:46:56 +08:00
|
|
|
:cpp:func:`main()` function (if one is defined).
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
By default, the main thread uses the highest configured preemptible thread
|
|
|
|
priority (i.e. 0). If the kernel is not configured to support preemptible
|
|
|
|
threads, the main thread uses the lowest configured cooperative thread
|
|
|
|
priority (i.e. -1).
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
The main thread is an essential thread while it is performing kernel
|
2016-11-09 21:46:56 +08:00
|
|
|
initialization or executing the application's :cpp:func:`main()` function;
|
|
|
|
this means a fatal system error is raised if the thread aborts. If
|
|
|
|
:cpp:func:`main()` is not defined, or if it executes and then does a normal
|
|
|
|
return, the main thread terminates normally and no error is raised.
|
2016-10-26 05:21:37 +08:00
|
|
|
|
2016-09-03 03:54:16 +08:00
|
|
|
**Idle thread**
|
|
|
|
This thread executes when there is no other work for the system to do.
|
|
|
|
If possible, the idle thread activates the board's power management support
|
|
|
|
to save power; otherwise, the idle thread simply performs a "do nothing"
|
2016-10-26 05:21:37 +08:00
|
|
|
loop. The idle thread remains in existence as long as the system is running
|
|
|
|
and never terminates.
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
The idle thread always uses the lowest configured thread priority.
|
|
|
|
If this makes it a cooperative thread, the idle thread repeatedly
|
|
|
|
yields the CPU to allow the application's other threads to run when
|
|
|
|
they need to.
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
The idle thread is an essential thread, which means a fatal system error
|
|
|
|
is raised if the thread aborts.
|
|
|
|
|
|
|
|
Additional system threads may also be spawned, depending on the kernel
|
|
|
|
and board configuration options specified by the application. For example,
|
|
|
|
enabling the system workqueue spawns a system thread
|
2016-10-26 05:22:38 +08:00
|
|
|
that services the work items submitted to it. (See :ref:`workqueues_v2`.)
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
Implementation
|
|
|
|
**************
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
Writing a main() function
|
|
|
|
=========================
|
|
|
|
|
|
|
|
An application-supplied :cpp:func:`main()` function begins executing once
|
|
|
|
kernel initialization is complete. The kernel does not pass any arguments
|
|
|
|
to the function.
|
2016-09-03 03:54:16 +08:00
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
The following code outlines a trivial :cpp:func:`main()` function.
|
|
|
|
The function used by a real application can be as complex as needed.
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
.. code-block:: c
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
/* initialize a semaphore */
|
|
|
|
...
|
|
|
|
|
|
|
|
/* register an ISR that gives the semaphore */
|
|
|
|
...
|
|
|
|
|
|
|
|
/* monitor the semaphore forever */
|
|
|
|
while (1) {
|
|
|
|
/* wait for the semaphore to be given by the ISR */
|
|
|
|
...
|
|
|
|
/* do whatever processing is now needed */
|
|
|
|
...
|
|
|
|
}
|
|
|
|
}
|
2016-09-03 03:54:16 +08:00
|
|
|
|
|
|
|
Suggested Uses
|
|
|
|
**************
|
|
|
|
|
|
|
|
Use the main thread to perform thread-based processing in an application
|
|
|
|
that only requires a single thread, rather than defining an additional
|
|
|
|
application-specific thread.
|
|
|
|
|
|
|
|
Configuration Options
|
|
|
|
*********************
|
|
|
|
|
|
|
|
Related configuration options:
|
|
|
|
|
|
|
|
* :option:`CONFIG_MAIN_THREAD_PRIORITY`
|
|
|
|
* :option:`CONFIG_MAIN_STACK_SIZE`
|
|
|
|
|
|
|
|
APIs
|
|
|
|
****
|
|
|
|
|
2016-10-26 05:21:37 +08:00
|
|
|
None.
|