summaryrefslogtreecommitdiff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorAxel Beckert <abe@deuxchevaux.org>2018-09-15 01:47:04 +0200
committerAxel Beckert <abe@deuxchevaux.org>2018-09-15 01:47:04 +0200
commit3d116bbb41654625687f0dbec0fef30b961e191d (patch)
tree3a56be953e45a78a95404fd816c325eae9410be7 /Src/zsh.h
parent77265d89ccd13989f26366915c46a3f5775a4dce (diff)
parent92bef88545ee9dc23f35886a8606c81610341477 (diff)
downloadzsh-3d116bbb41654625687f0dbec0fef30b961e191d.tar.gz
zsh-3d116bbb41654625687f0dbec0fef30b961e191d.zip
Merge tag 'zsh-5.6.2' into debian
Patch release: 5.6.2
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 8e7f20b2c..b81db1527 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -505,6 +505,14 @@ enum {
ZCONTEXT_PARSE = (1<<2)
};
+/* Report from entersubsh() to pass subshell info to addproc */
+struct entersubsh_ret {
+ /* Process group leader chosen by subshell, else -1 */
+ int gleader;
+ /* list_pipe_job setting used by subshell, else -1 */
+ int list_pipe_job;
+};
+
/**************************/
/* Abstract types for zsh */
/**************************/