HomeSort by: relevance | last modified time | path
    Searched refs:newlim (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_resource.c 681 struct plimit *newlim; local
685 newlim = kmem_alloc(sizeof(*newlim), KM_SLEEP);
686 mutex_init(&newlim->pl_lock, MUTEX_DEFAULT, IPL_NONE);
687 newlim->pl_writeable = false;
688 newlim->pl_refcnt = 1;
689 newlim->pl_sv_limit = NULL;
692 memcpy(newlim->pl_rlimit, lim->pl_rlimit,
702 newlim->pl_corename = defcorename;
703 newlim->pl_cnlen = 0
742 struct plimit *lim = p->p_limit, *newlim; local
    [all...]
  /src/external/gpl2/grep/dist/src/
grep.c 1186 long newlim; local
1190 newlim = re_max_failures * 2 * 20 * sizeof (char *);
1191 if (newlim > rlim.rlim_max)
1193 newlim = rlim.rlim_max;
1194 re_max_failures = newlim / (2 * 20 * sizeof (char *));
1196 if (rlim.rlim_cur < newlim)
1198 rlim.rlim_cur = newlim;

Completed in 47 milliseconds