aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorJoakim Verona2012-11-06 23:01:10 +0100
committerJoakim Verona2012-11-06 23:01:10 +0100
commit643b1893347ee5c32f6174d0f76a55d723060123 (patch)
tree06847c9375f32e91446bfdbe9aa342cb232be90f /src/process.h
parent9c809558c18410acf9b90529e183d192afca3d2c (diff)
parentb6b3b29458fefcf7f31a0b14d6484cf262db2e54 (diff)
downloademacs-643b1893347ee5c32f6174d0f76a55d723060123.tar.gz
emacs-643b1893347ee5c32f6174d0f76a55d723060123.zip
upstream
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index ce3d2e702cc..74d1a124060 100644
--- a/src/process.h
+++ b/src/process.h
@@ -142,6 +142,9 @@ struct Lisp_Process
142 /* Flag to set coding-system of the process buffer from the 142 /* Flag to set coding-system of the process buffer from the
143 coding_system used to decode process output. */ 143 coding_system used to decode process output. */
144 unsigned int inherit_coding_system_flag : 1; 144 unsigned int inherit_coding_system_flag : 1;
145 /* Whether the process is alive, i.e., can be waited for. Running
146 processes can be waited for, but exited and fake processes cannot. */
147 unsigned int alive : 1;
145 /* Record the process status in the raw form in which it comes from `wait'. 148 /* Record the process status in the raw form in which it comes from `wait'.
146 This is to avoid consing in a signal handler. The `raw_status_new' 149 This is to avoid consing in a signal handler. The `raw_status_new'
147 flag indicates that `raw_status' contains a new status that still 150 flag indicates that `raw_status' contains a new status that still