diff options
author | Paul Smith <psmith@gnu.org> | 1999-08-01 08:12:06 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-08-01 08:12:06 +0000 |
commit | e34540f79be9c915ce1d6191575267066370f6ec (patch) | |
tree | 8418cbb560875512845504a0bd504db81cf4232e /arscan.c | |
parent | 09f1e4cf83853e3636a19da17e28e7291aac9bbd (diff) | |
download | gunmake-e34540f79be9c915ce1d6191575267066370f6ec.tar.gz |
* Release 3.77.92.3.77.92
* Complete implementation of new jobserver algorithm.
* A few minor fixups.
Diffstat (limited to 'arscan.c')
-rw-r--r-- | arscan.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -775,11 +775,8 @@ ar_member_touch (arname, memname) if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) goto lose; /* The file's mtime is the time we we want. */ -#ifdef EINTR - while (fstat (fd, &statbuf) < 0 && errno == EINTR); -#else - fstat (fd, &statbuf); -#endif + while (fstat (fd, &statbuf) < 0 && EINTR_SET) + ; #if defined(ARFMAG) || defined(ARFZMAG) || defined(AIAMAG) || defined(WINDOWS32) /* Advance member's time to that time */ for (i = 0; i < sizeof ar_hdr.ar_date; i++) |