summaryrefslogtreecommitdiff
path: root/Src/zsh.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h7
1 files changed, 3 insertions, 4 deletions
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 <linux/tasks.h>
-#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 {