From a6a63a147e4e28a1ac700938c6e7694c6de97e5d Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 13 Nov 2003 14:34:33 +0000 Subject: 19242: Make job table dynamically reallocatable. --- Src/zsh.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 158717dea..f60fa5f45 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -684,10 +684,6 @@ struct eccstr { /* Definitions for job table and job control */ /********************************************/ -#ifdef NEED_LINUX_TASKS_H -#include -#endif - /* entry in the job table */ struct job { @@ -731,6 +727,9 @@ struct timeinfo { #define JOBTEXTSIZE 80 +/* Size to initialise the job table to, and to increment it by when needed. */ +#define MAXJOBS_ALLOC (50) + /* node in job process lists */ struct process { -- cgit v1.2.3