aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/process.h b/src/process.h
index 6aff95686a2..a9b15f03da4 100644
--- a/src/process.h
+++ b/src/process.h
@@ -27,9 +27,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27#endif 27#endif
28 28
29INLINE_HEADER_BEGIN 29INLINE_HEADER_BEGIN
30#ifndef PROCESS_INLINE
31# define PROCESS_INLINE INLINE
32#endif
33 30
34/* Bound on number of file descriptors opened on behalf of a process, 31/* Bound on number of file descriptors opened on behalf of a process,
35 that need to be closed. */ 32 that need to be closed. */
@@ -179,14 +176,14 @@ struct Lisp_Process
179/* Most code should use these functions to set Lisp fields in struct 176/* Most code should use these functions to set Lisp fields in struct
180 process. */ 177 process. */
181 178
182PROCESS_INLINE void 179INLINE void
183pset_childp (struct Lisp_Process *p, Lisp_Object val) 180pset_childp (struct Lisp_Process *p, Lisp_Object val)
184{ 181{
185 p->childp = val; 182 p->childp = val;
186} 183}
187 184
188#ifdef HAVE_GNUTLS 185#ifdef HAVE_GNUTLS
189PROCESS_INLINE void 186INLINE void
190pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val) 187pset_gnutls_cred_type (struct Lisp_Process *p, Lisp_Object val)
191{ 188{
192 p->gnutls_cred_type = val; 189 p->gnutls_cred_type = val;