1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
2003-07-12  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/kernel-features.h: Define
	__ASSUME_UTIMES for the architectures which always had the syscall.
	* sysdeps/unix/sysv/linux/futimes.c: New file.
This commit is contained in:
Ulrich Drepper
2003-07-12 08:23:50 +00:00
parent 4a17085f15
commit 82bae9f921
3 changed files with 72 additions and 0 deletions

View File

@ -345,3 +345,9 @@
#if __LINUX_KERNEL_VERSION >= 132427 && defined __i386__
# define __ASSUME_TGKILL 1
#endif
/* The utimes syscall has been available for some architectures forever. */
#if defined __alpha__ || defined __ia64__ || defined __hppa_ \
|| defined __sparc__
# define __ASSUME_UTIMES 1
#endif