Searched refs:jobtabsize (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/zsh-61/zsh/Src/
H A Djobs.c67 mod_export int jobtabsize; variable
1536 memset(jobtab, 0, jobtabsize * sizeof(struct job)); /* zero out table */
1575 if (maxjob + 1 < jobtabsize)
1833 jobtabsize = MAXJOBS_ALLOC;
1881 int newsize = jobtabsize + MAXJOBS_ALLOC;
1895 memset(newjobtab + jobtabsize, 0, MAXJOBS_ALLOC * sizeof(struct job));
1898 jobtabsize = newsize;
1919 if (jobbound < jobtabsize && jobbound > maxjob + 20) {
1928 jobtabsize = jobbound;
H A Dexec.c287 if (thisjob != -1 && thisjob >= jobtabsize - 1 && !expandjobtab()) {

Completed in 127 milliseconds