SingingCat 0
application
softirq.h
1#ifndef SOFTIRQ_H
2#define SOFTIRQ_H
3void softirq_init();
4int softirq_timer(uint32_t hertz, uint32_t opaque, void (*callback)(uint32_t));
5void print_softirqs();
6// remove all softirqs (called by userapp_disable);
7void softirqs_removeall();
8#endif