This is the mail archive of the libc-ports@sources.redhat.com mailing list for the libc-ports 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]

Remove __i386__ conditional in ARM kernel-features.h


The ARM kernel-features.h has an __i386__ conditional that is clearly
wrong.  (Before ports had their own kernel-features.h files, the
central one had (defined __i386__ || defined __arm__) here, so it
seems there was a mistake in copying into the ARM file.)

2006-10-19  Joseph S. Myers  <joseph@codesourcery.com>

	* sysdeps/unix/sysv/linux/arm/kernel-features.h: Remove __i386__
	conditional.

Index: sysdeps/unix/sysv/linux/arm/kernel-features.h
===================================================================
RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/arm/kernel-features.h,v
retrieving revision 1.2
diff -u -r1.2 kernel-features.h
--- sysdeps/unix/sysv/linux/arm/kernel-features.h	30 May 2006 15:12:30 -0000	1.2
+++ sysdeps/unix/sysv/linux/arm/kernel-features.h	19 Oct 2006 20:10:17 -0000
@@ -42,7 +42,7 @@
 #endif
 
 /* The vfork syscall on arm was definitely available in 2.4.  */
-#if __LINUX_KERNEL_VERSION >= 132097 && defined __i386__
+#if __LINUX_KERNEL_VERSION >= 132097
 # define __ASSUME_VFORK_SYSCALL		1
 #endif
 

-- 
Joseph S. Myers
joseph@codesourcery.com


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