Searched defs:lofs_mnttab (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libproc/common/
H A DPzone.c56 static struct lofs_mnttab { /* linked list of all lofs mount points */ struct
57 struct lofs_mnttab *l_next;
60 } *lofs_mnttab = NULL; variable in typeref:struct:lofs_mnttab
68 struct lofs_mnttab *lmt;
69 struct lofs_mnttab *next;
75 for (lmt = lofs_mnttab; lmt != NULL; lmt = next) {
81 lofs_mnttab = NULL;
100 if ((lmt = malloc(sizeof (struct lofs_mnttab))) == NULL)
104 lmt->l_next = lofs_mnttab;
105 lofs_mnttab
[all...]

Completed in 64 milliseconds