1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-27 02:16:22 +02:00

Changed a few job-table variables into ints.

This commit is contained in:
Wayne Davison 2004-05-28 19:16:55 +00:00
parent 059162c442
commit f160996d51

View File

@ -64,12 +64,12 @@ mod_export struct job *jobtab;
/* Size of the job table. */
/**/
mod_export size_t jobtabsize;
mod_export int jobtabsize;
/* The highest numbered job in the jobtable */
/**/
mod_export size_t maxjob;
mod_export int maxjob;
/* If we have entered a subshell, the original shell's job table. */
static struct job *oldjobtab;
@ -1365,7 +1365,7 @@ init_jobs(char **argv, char **envp)
int
expandjobtab(void)
{
size_t newsize = jobtabsize + MAXJOBS_ALLOC;
int newsize = jobtabsize + MAXJOBS_ALLOC;
struct job *newjobtab;
if (newsize > MAX_MAXJOBS)
@ -1399,7 +1399,7 @@ expandjobtab(void)
void
maybeshrinkjobtab(void)
{
size_t jobbound;
int jobbound;
queue_signals();
jobbound = maxjob + MAXJOBS_ALLOC - (maxjob % MAXJOBS_ALLOC);