RT-Thread Kernel API
Detailed Description
The Kernel APIs are the core APIs of RT-Thread, which supports the following features:
- Multi-thread management
- Synchronization mechanisms
- Inter-thread communication
- Memory management
- Asynchronous timer
Function Documentation
| void rt_interrupt_enter |
( |
void |
|
) |
|
This function will be invoked by BSP, when enter interrupt service routine
- Note:
- please don't invoke this routine in application
- See also:
- rt_interrupt_leave
| void rt_interrupt_leave |
( |
void |
|
) |
|
This function will be invoked by BSP, when leave interrupt service routine
- Note:
- please don't invoke this routine in application
- See also:
- rt_interrupt_enter