summaryrefslogtreecommitdiff
path: root/src/callproc.c
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2022-02-10 22:59:26 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2022-02-10 23:06:17 +0100
commit26eeca71fbb3ee76ad51d3b83b79992f165e5f06 (patch)
tree46a8ec47a90a24412892c793918cb188af18ea61 /src/callproc.c
parent437382734a53e8fb311938d5dd8a39508e60b9bf (diff)
downloademacs-26eeca71fbb3ee76ad51d3b83b79992f165e5f06.tar.gz
emacs-26eeca71fbb3ee76ad51d3b83b79992f165e5f06.tar.bz2
emacs-26eeca71fbb3ee76ad51d3b83b79992f165e5f06.zip
Silence macOS vfork deprecation warnings
The vfork system call exists and works in macOS 11.6 but the compiler gives a deprecation message; silence it, because the performance is still better than that of plain fork. See discussion at https://lists.gnu.org/archive/html/emacs-devel/2022-02/msg00260.html * src/conf_post.h (VFORK): New #define. * src/callproc.c (emacs_spawn): * src/sysdep.c (sys_subshell): Use it.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 4d3b0bb8e06..dcee740043c 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -1500,7 +1500,7 @@ emacs_spawn (pid_t *newpid, int std_in, int std_out, int std_err,
if (pty != NULL)
pid = fork ();
else
- pid = vfork ();
+ pid = VFORK ();
#else
pid = vfork ();
#endif