Searched refs:naux (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libproc/common/
H A Dproc_get_info.c171 * 'naux' is the number of aux entries in the caller's buffer.
173 * the process (less than or equal to 'naux') or -1 on failure.
176 proc_get_auxv(pid_t pid, auxv_t *pauxv, int naux) argument
185 if ((rv = read(fd, pauxv, naux * sizeof (auxv_t))) >= 0)
H A DPsymtab.c861 ssize_t naux; local
883 if ((naux = read(fd, P->auxv, statb.st_size)) < 0 ||
884 (naux /= sizeof (auxv_t)) < 1) {
888 P->auxv[naux].a_type = AT_NULL;
889 P->auxv[naux].a_un.a_val = 0L;
890 P->nauxv = (int)naux;
H A Dllib-lproc340 int proc_get_auxv(pid_t pid, auxv_t *pauxv, int naux);

Completed in 28 milliseconds