| 54 | |
| 55 | #ifndef FSTACK |
| 56 | int |
| 57 | memstat_kvm_all(struct memory_type_list *mtlp, void *kvm_handle) |
| 58 | { |
| 59 | |
| 60 | if (memstat_kvm_malloc(mtlp, kvm_handle) < 0) |
| 61 | return (-1); |
| 62 | if (memstat_kvm_uma(mtlp, kvm_handle) < 0) |
| 63 | return (-1); |
| 64 | return (0); |
| 65 | } |
| 66 | #endif |
| 67 |
no test coverage detected