diff options
| author | Eli Zaretskii | 2016-12-04 19:59:17 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-12-04 19:59:17 +0200 |
| commit | de4624c99ea5bbe38ad5aff7b6461cc5c740d0be (patch) | |
| tree | 1b57de9e769cdb695cb2cecf157b50f7dea9cfe5 /src/process.h | |
| parent | a486fabb41cdbaa5813c2687fd4008945297d71d (diff) | |
| parent | e7bde34e939451d87fb42a36195086bdbe48b5e1 (diff) | |
| download | emacs-de4624c99ea5bbe38ad5aff7b6461cc5c740d0be.tar.gz emacs-de4624c99ea5bbe38ad5aff7b6461cc5c740d0be.zip | |
Merge branch 'concurrency'
Conflicts (resolved):
configure.ac
src/Makefile.in
src/alloc.c
src/bytecode.c
src/emacs.c
src/eval.c
src/lisp.h
src/process.c
src/regex.c
src/regex.h
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 5 |
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 | ||
| 275 | extern Lisp_Object remove_slash_colon (Lisp_Object); | 278 | extern Lisp_Object remove_slash_colon (Lisp_Object); |
| 276 | 279 | ||
| 280 | extern void update_processes_for_thread_death (Lisp_Object); | ||
| 281 | |||
| 277 | INLINE_HEADER_END | 282 | INLINE_HEADER_END |
| 278 | 283 | ||
| 279 | #endif /* EMACS_PROCESS_H */ | 284 | #endif /* EMACS_PROCESS_H */ |