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

/illumos-gate/usr/src/lib/libc/port/gen/
H A Disaexec.c43 * implement the isalist exec algorithms. See PSARC/1997/220.
49 char *isalist; local
58 * Extract the isalist(5) for userland from the kernel.
60 isalist = malloc(isalen);
62 long ret = sysinfo(SI_ISALIST, isalist, isalen);
64 free(isalist);
70 isalist = realloc(isalist, isalen);
73 } while (isalist != NULL);
75 if (isalist
[all...]
/illumos-gate/usr/src/cmd/pfexecd/
H A Dpfexecd.c74 char *isalist; local
82 * Extract the isalist(5) for userland from the kernel.
84 isalist = malloc(isalen);
86 ret = sysinfo(SI_ISALIST, isalist, isalen);
88 free(isalist);
93 isalist = realloc(isalist, isalen);
96 } while (isalist != NULL);
99 if (isalist == NULL)
110 for (p = isalist; *
[all...]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dauto_subr.c942 * Extract the isalist(5) for userland from the kernel.
945 isalist(void) function
1022 * Find the left-most element in the isalist that matches our idea of a
1034 if ((list = isalist()) == NULL)

Completed in 56 milliseconds