| 90 | } |
| 91 | |
| 92 | int |
| 93 | shared_page_alloc(int size, int align) |
| 94 | { |
| 95 | int res; |
| 96 | |
| 97 | sx_xlock(&shared_page_alloc_sx); |
| 98 | res = shared_page_alloc_locked(size, align); |
| 99 | sx_xunlock(&shared_page_alloc_sx); |
| 100 | return (res); |
| 101 | } |
| 102 | |
| 103 | int |
| 104 | shared_page_fill(int size, int align, const void *data) |
no test coverage detected