From 406af475be236b874e3633b68999f6a099d47587 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 5 Jul 2013 19:40:50 -0700 Subject: Use emacs_open more consistently when opening files. This handles EINTR more consistently now, and makes it easier to introduce other uniform changes to file descriptor handling. * src/systdio.h: New file. * src/buffer.c (mmap_init): * cygw32.c (chdir_to_default_directory): * dispnew.c (Fopen_termscript): * emacs.c (Fdaemon_initialized): * fileio.c (Fdo_auto_save): * image.c (slurp_file, png_load_body, jpeg_load_body): * keyboard.c (Fopen_dribble_file): * lread.c (Fload): * print.c (Fredirect_debugging_output): * sysdep.c (get_up_time, procfs_ttyname, procfs_get_total_memory): * termcap.c (tgetent): * unexaix.c, unexcoff.c (unexec, adjust_lnnoptrs): * unexcw.c, unexelf.c, unexhp9k800.c, unexmacosx.c (unexec): * w32term.c (w32_initialize) [CYGWIN]: * xfaces.c (Fx_load_color_file): Use emacs_open instead of plain open, and emacs_fopen instead of plain fopen. * dispnew.c, fileio.c, image.c, keyboard.c, lread.c, print.c, sysdep.c: * xfaces.c: Include sysstdio.h rather than stdio.h, for emacs_fopen. * callproc.c (default_output_mode): New constant. (Fcall_process): Use it to call emacs_open instead of plain creat. * dispnew.c (Fopen_termscript): Fix minor race in opening termscript. * sysdep.c (emacs_open): Add commentary and don't call file name "path". (emacs_fopen): New function. * unexaix.c, unexcoff.c, unexelf.c, unexhp9k800.c, unexmacosx.c: Include , for emacs_open. * unexelf.c (fatal): Remove decl; not needed with included. --- src/unexhp9k800.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/unexhp9k800.c') diff --git a/src/unexhp9k800.c b/src/unexhp9k800.c index ce65faffd4e..0f6eb87ee01 100644 --- a/src/unexhp9k800.c +++ b/src/unexhp9k800.c @@ -51,6 +51,7 @@ #include #include "unexec.h" +#include "lisp.h" #include #include @@ -268,10 +269,10 @@ unexec (const char *new_name, /* name of the new a.out file to be created * intact. NOT implemented. */ /* Open the input and output a.out files */ - old = open (old_name, O_RDONLY); + old = emacs_open (old_name, O_RDONLY, 0); if (old < 0) { perror (old_name); exit (1); } - new = open (new_name, O_CREAT|O_RDWR|O_TRUNC, 0777); + new = emacs_open (new_name, O_CREAT | O_RDWR | O_TRUNC, 0777); if (new < 0) { perror (new_name); exit (1); } -- cgit v1.2.3