diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 63680a0ed8e..2f46e74d4d0 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -101,6 +101,18 @@ struct Lisp_Process | |||
| 101 | generated, and can be changed by the function | 101 | generated, and can be changed by the function |
| 102 | `set-process-fileter-multibyte'. */ | 102 | `set-process-fileter-multibyte'. */ |
| 103 | Lisp_Object filter_multibyte; | 103 | Lisp_Object filter_multibyte; |
| 104 | /* Should we delay reading output from this process. | ||
| 105 | Initialized from `Vprocess_adaptive_read_buffering'. */ | ||
| 106 | Lisp_Object adaptive_read_buffering; | ||
| 107 | /* Hysteresis to try to read process output in larger blocks. | ||
| 108 | On some systems, e.g. the Linux kernel, emacs is seen as | ||
| 109 | an interactive app also when reading process output, meaning | ||
| 110 | that process output can be read in as little as 1 byte at a | ||
| 111 | time. Value is micro-seconds to delay reading output from | ||
| 112 | this process. Range is 0 .. 50000. */ | ||
| 113 | Lisp_Object read_output_delay; | ||
| 114 | /* Skip reading this process on next read. */ | ||
| 115 | Lisp_Object read_output_skip; | ||
| 104 | }; | 116 | }; |
| 105 | 117 | ||
| 106 | /* Every field in the preceding structure except for the first two | 118 | /* Every field in the preceding structure except for the first two |