This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-257-gfa9e155


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  fa9e15558d711c098183be531043eae465b81036 (commit)
      from  fb03b04b7f18638d0942622a479acf7f63b5019f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fa9e15558d711c098183be531043eae465b81036

commit fa9e15558d711c098183be531043eae465b81036
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Mon Apr 2 17:07:11 2018 +0200

    hurd: Fix exposition of UTIME_NOW, UTIME_OMIT
    
    	* sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
    	(UTIME_NOW, UTIME_OMIT): Define macros.

diff --git a/ChangeLog b/ChangeLog
index ff6787c..a3cb00e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -223,6 +223,9 @@
 	* README: Remove the mention of out-of-tree patches needed for
 	GNU/Hurd.
 
+	* sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
+	(UTIME_NOW, UTIME_OMIT): Define macros.
+
 2018-04-02  Agustina Arzille  <avarzille@riseup.net>
             Amos Jeffries  <squid3@treenet.co.nz>
             David Michael  <fedora.dm0@gmail.com>
diff --git a/sysdeps/mach/hurd/bits/stat.h b/sysdeps/mach/hurd/bits/stat.h
index e354a05..cb8680e 100644
--- a/sysdeps/mach/hurd/bits/stat.h
+++ b/sysdeps/mach/hurd/bits/stat.h
@@ -244,11 +244,6 @@ struct stat64
 # define SF_NOUNLINK	0x00100000	/* file may not be removed or renamed */
 # define SF_SNAPSHOT	0x00200000	/* snapshot inode */
 
-#ifdef __USE_ATFILE
-# define UTIME_NOW  -1 /* corresponds to the current time */
-# define UTIME_OMIT -2 /* target time is omitted */
-#endif
-
 __BEGIN_DECLS
 
 /* Set file flags for FILE to FLAGS.  */
@@ -260,4 +255,9 @@ extern int fchflags (int __fd, unsigned long int __flags) __THROW;
 __END_DECLS
 #endif
 
+#ifdef __USE_ATFILE
+# define UTIME_NOW  -1 /* corresponds to the current time */
+# define UTIME_OMIT -2 /* target time is omitted */
+#endif
+
 #endif	/* bits/stat.h */

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                     |    3 +++
 sysdeps/mach/hurd/bits/stat.h |   10 +++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]