| 14 | #include "watermark_queue.h" |
| 15 | |
| 16 | void rt_wm_que_set_mark(struct rt_watermark_queue *wg, |
| 17 | unsigned int low, unsigned int high) |
| 18 | { |
| 19 | RT_ASSERT(low <= high); |
| 20 | |
| 21 | wg->high_mark = high; |
| 22 | wg->low_mark = low; |
| 23 | } |
| 24 | |
| 25 | void rt_wm_que_init(struct rt_watermark_queue *wg, |
| 26 | unsigned int low, unsigned int high) |
no outgoing calls
no test coverage detected