mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 16:39:53 +02:00
Bash-5.3-alpha release
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/* command.h -- The structures used internally to represent commands, and
|
||||
the extern declarations of the functions used to create them. */
|
||||
|
||||
/* Copyright (C) 1993-2021 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1993-2022 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Bash, the Bourne Again SHell.
|
||||
|
||||
@@ -366,6 +366,8 @@ typedef struct subshell_com {
|
||||
|
||||
#define COPROC_RUNNING 0x01
|
||||
#define COPROC_DEAD 0x02
|
||||
#define COPROC_STOPPED 0x04
|
||||
#define COPROC_FOREGROUND 0x08 /* why would you want to do this? */
|
||||
|
||||
typedef struct coproc {
|
||||
char *c_name;
|
||||
@@ -398,13 +400,13 @@ extern Coproc sh_coproc;
|
||||
|
||||
/* Forward declarations of functions declared in copy_cmd.c. */
|
||||
|
||||
extern FUNCTION_DEF *copy_function_def_contents PARAMS((FUNCTION_DEF *, FUNCTION_DEF *));
|
||||
extern FUNCTION_DEF *copy_function_def PARAMS((FUNCTION_DEF *));
|
||||
extern FUNCTION_DEF *copy_function_def_contents (FUNCTION_DEF *, FUNCTION_DEF *);
|
||||
extern FUNCTION_DEF *copy_function_def (FUNCTION_DEF *);
|
||||
|
||||
extern WORD_DESC *copy_word PARAMS((WORD_DESC *));
|
||||
extern WORD_LIST *copy_word_list PARAMS((WORD_LIST *));
|
||||
extern REDIRECT *copy_redirect PARAMS((REDIRECT *));
|
||||
extern REDIRECT *copy_redirects PARAMS((REDIRECT *));
|
||||
extern COMMAND *copy_command PARAMS((COMMAND *));
|
||||
extern WORD_DESC *copy_word (WORD_DESC *);
|
||||
extern WORD_LIST *copy_word_list (WORD_LIST *);
|
||||
extern REDIRECT *copy_redirect (REDIRECT *);
|
||||
extern REDIRECT *copy_redirects (REDIRECT *);
|
||||
extern COMMAND *copy_command (COMMAND *);
|
||||
|
||||
#endif /* _COMMAND_H_ */
|
||||
|
||||
Reference in New Issue
Block a user