diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-04-13 22:25:04 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-04-13 22:25:04 +0000 |
commit | c281f5c3bac7dcd38009018f5401c0c43285e140 (patch) | |
tree | bf5a49c70649460e37fc19feecbf67a17eafdbb0 /Src | |
parent | 6372332a92705260211c29701653e75443a54d20 (diff) | |
download | zsh-c281f5c3bac7dcd38009018f5401c0c43285e140.tar.gz zsh-c281f5c3bac7dcd38009018f5401c0c43285e140.tar.xz zsh-c281f5c3bac7dcd38009018f5401c0c43285e140.zip |
10745: MAXJOB = MAX_TASKS_PER_USER from linux/tasks.h
Diffstat (limited to 'Src')
-rw-r--r-- | Src/zsh.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 5d1a8b1c8..306cc82e5 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -661,8 +661,9 @@ struct eccstr { /* Defintions for job table and job control */ /********************************************/ -/* size of job table */ -#define MAXJOB 50 +#ifdef NEED_LINUX_TASKS_H +#include <linux/tasks.h> +#endif /* entry in the job table */ |