aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index 24c628231a0..e497ebc539f 100644
--- a/src/process.h
+++ b/src/process.h
@@ -115,6 +115,9 @@ struct Lisp_Process
115 /* Pipe process attached to the standard error of this process. */ 115 /* Pipe process attached to the standard error of this process. */
116 Lisp_Object stderrproc; 116 Lisp_Object stderrproc;
117 117
118 /* The thread a process is linked to, or nil for any thread. */
119 Lisp_Object thread;
120
118 /* After this point, there are no Lisp_Objects any more. */ 121 /* After this point, there are no Lisp_Objects any more. */
119 /* alloc.c assumes that `pid' is the first such non-Lisp slot. */ 122 /* alloc.c assumes that `pid' is the first such non-Lisp slot. */
120 123
@@ -274,6 +277,8 @@ extern Lisp_Object network_interface_info (Lisp_Object);
274 277
275extern Lisp_Object remove_slash_colon (Lisp_Object); 278extern Lisp_Object remove_slash_colon (Lisp_Object);
276 279
280extern void update_processes_for_thread_death (Lisp_Object);
281
277INLINE_HEADER_END 282INLINE_HEADER_END
278 283
279#endif /* EMACS_PROCESS_H */ 284#endif /* EMACS_PROCESS_H */