1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-02 18:21:19 -08:00

Add Bug#8298.

This commit is contained in:
Paul Eggert 2011-03-19 22:15:59 -07:00
parent 12d8b6ab59
commit c939f91b4d

View file

@ -8,7 +8,7 @@
(Fnetwork_interface_info): Fix pointer signedness.
(process_send_signal): Add cast to avoid pointer signedness problem.
(FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
(create_process): Use 'volatile' to avoid vfork clobbering.
(create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
2011-03-19 Paul Eggert <eggert@cs.ucla.edu>
@ -75,7 +75,8 @@
* region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
* callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
* callproc.c (Fcall_process): Use 'volatile' to avoid vfork
clobbering (Bug#8298).
* sysdep.c (sys_subshell): Likewise.
Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.