diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-11 17:51:06 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-03-11 17:51:06 +0100 |
commit | 281cfdda94c164b1e629247a259d7e26a515335e (patch) | |
tree | ae9e55f92749766f0d0be2a655739003afcd177b /src/plugins/exec/exec.h | |
parent | 5708b3977c1e5b9d45639809d54a3d29cd1f92f6 (diff) | |
download | weechat-281cfdda94c164b1e629247a259d7e26a515335e.zip |
exec: add option "-bg" in command /exec
Diffstat (limited to 'src/plugins/exec/exec.h')
-rw-r--r-- | src/plugins/exec/exec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/exec/exec.h b/src/plugins/exec/exec.h index 21490aff6..6d7c4f5fa 100644 --- a/src/plugins/exec/exec.h +++ b/src/plugins/exec/exec.h @@ -33,6 +33,7 @@ struct t_exec_cmd struct t_hook *hook; /* pointer to process hook */ char *command; /* command (with arguments) */ pid_t pid; /* process id */ + int detached; /* 1 if command is detached */ time_t start_time; /* start time */ time_t end_time; /* end time */ |