| 91 | } |
| 92 | |
| 93 | static rt_err_t _null_split(struct rt_varea *existed, void *unmap_start, rt_size_t unmap_len, struct rt_varea *subset) |
| 94 | { |
| 95 | rt_varea_unmap_range(existed, unmap_start, unmap_len); |
| 96 | return RT_EOK; |
| 97 | } |
| 98 | |
| 99 | static rt_err_t _null_expand(struct rt_varea *varea, void *new_vaddr, rt_size_t size) |
| 100 | { |
nothing calls this directly
no test coverage detected