| 71 | } |
| 72 | |
| 73 | struct memory_type_list * |
| 74 | memstat_mtl_alloc(void) |
| 75 | { |
| 76 | struct memory_type_list *mtlp; |
| 77 | |
| 78 | mtlp = malloc(sizeof(*mtlp)); |
| 79 | if (mtlp == NULL) |
| 80 | return (NULL); |
| 81 | |
| 82 | LIST_INIT(&mtlp->mtl_list); |
| 83 | mtlp->mtl_error = MEMSTAT_ERROR_UNDEFINED; |
| 84 | return (mtlp); |
| 85 | } |
| 86 | |
| 87 | struct memory_type * |
| 88 | memstat_mtl_first(struct memory_type_list *list) |