![]() |
Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
|
Go to the source code of this file.
Data Structures | |
| struct | tasklet_struct |
Functions | |
| void | tasklet_init (struct tasklet_struct *t, void(*func)(unsigned long), unsigned long data) |
| Initialize the tasklet. More... | |
| void | tasklet_schedule (struct tasklet_struct *t) |
| Schedule the tasklet. More... | |
| void | softirqd (void) |
| void tasklet_init | ( | struct tasklet_struct * | t, |
| void(*)(unsigned long) | func, | ||
| unsigned long | data | ||
| ) |
Initialize the tasklet.
| t | Pointer to the tasklet. |
| func | The tasklet function to execute if scheduled. |
| data | The data passed with the tasklet function. |
| None |
| void tasklet_schedule | ( | struct tasklet_struct * | t | ) |
Schedule the tasklet.
| t | Pointer to the tasklet. |
| None |