[Glibc-bsd-commits] r4433 - trunk/glibc-ports/kfreebsd

Petr Salinger ps-guest at alioth.debian.org
Mon May 13 17:56:50 UTC 2013


Author: ps-guest
Date: 2013-05-13 17:56:49 +0000 (Mon, 13 May 2013)
New Revision: 4433

Modified:
   trunk/glibc-ports/kfreebsd/kernel-features.h
Log:
min kernel version is already 8.1 - cleanup kernel-features.h


Modified: trunk/glibc-ports/kfreebsd/kernel-features.h
===================================================================
--- trunk/glibc-ports/kfreebsd/kernel-features.h	2013-05-13 17:54:15 UTC (rev 4432)
+++ trunk/glibc-ports/kfreebsd/kernel-features.h	2013-05-13 17:56:49 UTC (rev 4433)
@@ -53,40 +53,25 @@
 */
 
 /* Real-time signals introduced in FreeBSD 7.x.  */
-#if __KFREEBSD_KERNEL_VERSION >= 0x70032
 # define __ASSUME_REALTIME_SIGNALS	1
-#endif
 
 /* Use signals #32, #33, #34 for internal linuxthreads communication */
 #define PTHREAD_SIGBASE 32
 
 /* The `ftruncate' syscall was introduced in kFreeBSD 7.0. */
-#if __KFREEBSD_KERNEL_VERSION >= 0x70032
 # define __ASSUME_TRUNCATE_SYSCALL	1
-#endif
 
 /* The `lseek' syscall was introduced in kFreeBSD 7.0. */
-#if __KFREEBSD_KERNEL_VERSION >= 0x70032
 # define __ASSUME_LSEEK_SYSCALL		1
-#endif
 
 /* The `mmap' syscall was introduced in kFreeBSD 7.0. */
-#if __KFREEBSD_KERNEL_VERSION >= 0x70032
 # define __ASSUME_MMAP_SYSCALL		1
-#endif
 
 /* The `pread' and `pwrite' syscalls were introduced in kFreeBSD 7.0. */
-#if __KFREEBSD_KERNEL_VERSION >= 0x70032
 # define __ASSUME_PREAD_PWRITE_SYSCALLS	1
-#endif
 
 /* The `shm_*' syscalls were introduced in kFreeBSD 8.0 */
-#if __KFREEBSD_KERNEL_VERSION >= 0x8000C
 # define __ASSUME_SHMFCTS		1
-#endif
 
 /* The `*at' syscalls were introduced in kFreeBSD 8.0. */
-#if __KFREEBSD_KERNEL_VERSION >= 0x8001D
 # define __ASSUME_ATFCTS		1
-#endif
-




More information about the Glibc-bsd-commits mailing list