Lines Matching defs:nldt
1115 * The caller provides a buffer of size 'nldt * sizeof (struct ssd)';
1116 * If pldt == NULL or nldt == 0, we return the number of existing LDT entries.
1117 * Otherwise we return the actual number of LDT entries fetched (<= nldt).
1120 Pldt(struct ps_prochandle *P, struct ssd *pldt, int nldt)
1128 return (proc_get_ldt(P->pid, pldt, nldt));
1130 if (pldt == NULL || nldt == 0)
1134 nldt = MIN(nldt, P->core->core_nldt);
1137 nldt * sizeof (struct ssd));
1139 return (nldt);