亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? kernel-features.h

?? glibc 2.9,最新版的C語言庫函數
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* Set flags signalling availability of kernel features based on given   kernel version number.   Copyright (C) 1999-2006, 2007, 2008 Free Software Foundation, Inc.   This file is part of the GNU C Library.   The GNU C Library is free software; you can redistribute it and/or   modify it under the terms of the GNU Lesser General Public   License as published by the Free Software Foundation; either   version 2.1 of the License, or (at your option) any later version.   The GNU C Library is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   Lesser General Public License for more details.   You should have received a copy of the GNU Lesser General Public   License along with the GNU C Library; if not, write to the Free   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA   02111-1307 USA.  *//* This file must not contain any C code.  At least it must be protected   to allow using the file also in assembler files.  */#ifndef __LINUX_KERNEL_VERSION/* We assume the worst; all kernels should be supported.  */# define __LINUX_KERNEL_VERSION	0#endif/* We assume for __LINUX_KERNEL_VERSION the same encoding used in   linux/version.h.  I.e., the major, minor, and subminor all get a   byte with the major number being in the highest byte.  This means   we can do numeric comparisons.   In the following we will define certain symbols depending on   whether the describes kernel feature is available in the kernel   version given by __LINUX_KERNEL_VERSION.  We are not always exactly   recording the correct versions in which the features were   introduced.  If somebody cares these values can afterwards be   corrected.  Most of the numbers here are set corresponding to   2.2.0.  *//* `getcwd' system call.  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_GETCWD_SYSCALL	1#endif/* Real-time signal became usable in 2.1.70.  */#if __LINUX_KERNEL_VERSION >= 131398# define __ASSUME_REALTIME_SIGNALS	1#endif/* When were the `pread'/`pwrite' syscalls introduced?  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_PREAD_SYSCALL		1# define __ASSUME_PWRITE_SYSCALL	1#endif/* When was `poll' introduced?  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_POLL_SYSCALL		1#endif/* The `lchown' syscall was introduced in 2.1.80.  */#if __LINUX_KERNEL_VERSION >= 131408# define __ASSUME_LCHOWN_SYSCALL	1#endif/* When did the `setresuid' sysall became available?  */#if __LINUX_KERNEL_VERSION >= 131584 && !defined __sparc__# define __ASSUME_SETRESUID_SYSCALL	1#endif/* The SIOCGIFNAME ioctl is available starting with 2.1.50.  */#if __LINUX_KERNEL_VERSION >= 131408# define __ASSUME_SIOCGIFNAME		1#endif/* MSG_NOSIGNAL was at least available with Linux 2.2.0.  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_MSG_NOSIGNAL		1#endif/* The sendfile syscall was introduced in 2.2.0.  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_SENDFILE		1#endif/* Only very old kernels had no real symlinks for terminal descriptors   in /proc/self/fd.  */#if __LINUX_KERNEL_VERSION >= 131584# define __ASSUME_PROC_SELF_FD_SYMLINK	1#endif/* On x86 another `getrlimit' syscall was added in 2.3.25.  */#if __LINUX_KERNEL_VERSION >= 131865 && defined __i386__# define __ASSUME_NEW_GETRLIMIT_SYSCALL	1#endif/* On x86 the truncate64/ftruncate64 syscalls were introduced in 2.3.31.  */#if __LINUX_KERNEL_VERSION >= 131871 && defined __i386__# define __ASSUME_TRUNCATE64_SYSCALL	1#endif/* On x86 the mmap2 syscall was introduced in 2.3.31.  */#if __LINUX_KERNEL_VERSION >= 131871 && defined __i386__# define __ASSUME_MMAP2_SYSCALL	1#endif/* On x86 the stat64/lstat64/fstat64 syscalls were introduced in 2.3.34.  */#if __LINUX_KERNEL_VERSION >= 131874 && defined __i386__# define __ASSUME_STAT64_SYSCALL	1#endif/* On sparc the truncate64/ftruncate64/mmap2/stat64/lstat64/fstat64   syscalls were introduced in 2.3.35.  */#if __LINUX_KERNEL_VERSION >= 131875 \    && (defined __sparc__ && !defined __arch64__)# define __ASSUME_TRUNCATE64_SYSCALL	1# define __ASSUME_MMAP2_SYSCALL		1# define __ASSUME_STAT64_SYSCALL	1#endif/* I know for sure that getrlimit are in 2.3.35 on powerpc.  */#if __LINUX_KERNEL_VERSION >= 131875 && defined __powerpc__# define __ASSUME_NEW_GETRLIMIT_SYSCALL	1#endif/* I know for sure that these are in 2.3.35 on powerpc. But PowerPC64 does not   support separate 64-bit syscalls, already 64-bit */#if __LINUX_KERNEL_VERSION >= 131875 && defined __powerpc__ \    && !defined __powerpc64__# define __ASSUME_TRUNCATE64_SYSCALL	1# define __ASSUME_STAT64_SYSCALL	1#endif/* Linux 2.3.39 introduced 32bit UID/GIDs.  Some platforms had 32   bit type all along.  */#if __LINUX_KERNEL_VERSION >= 131879 || defined __powerpc__# define __ASSUME_32BITUIDS		1#endif/* Linux 2.3.39 sparc added setresuid.  */#if __LINUX_KERNEL_VERSION >= 131879 && defined __sparc__# define __ASSUME_SETRESUID_SYSCALL	1#endif#if __LINUX_KERNEL_VERSION >= 131879# define __ASSUME_SETRESGID_SYSCALL	1#endif/* Linux 2.3.39 introduced IPC64.  Except for powerpc.  */#if __LINUX_KERNEL_VERSION >= 131879 && !defined __powerpc__# define __ASSUME_IPC64		1#endif/* We can use the LDTs for threading with Linux 2.3.99 and newer.  */#if __LINUX_KERNEL_VERSION >= 131939# define __ASSUME_LDT_WORKS		1#endif/* Linux 2.4.0 on PPC introduced a correct IPC64. But PowerPC64 does not   support a separate 64-bit sys call, already 64-bit */#if __LINUX_KERNEL_VERSION >= 132096 && defined __powerpc__ \    && !defined __powerpc64__# define __ASSUME_IPC64			1#endif/* SH kernels got stat64, mmap2, and truncate64 during 2.4.0-test.  */#if __LINUX_KERNEL_VERSION >= 132096 && defined __sh__# define __ASSUME_TRUNCATE64_SYSCALL	1# define __ASSUME_MMAP2_SYSCALL		1# define __ASSUME_STAT64_SYSCALL	1#endif/* The changed st_ino field appeared in 2.4.0-test6.  But we cannot   distinguish this version from other 2.4.0 releases.  Therefore play   save and assume it available is for 2.4.1 and up.  However, SH is lame,   and still does not have a 64-bit inode field.  */#if __LINUX_KERNEL_VERSION >= 132097 && !defined __alpha__ && !defined __sh__# define __ASSUME_ST_INO_64_BIT		1#endif/* To support locking of large files a new fcntl() syscall was introduced   in 2.4.0-test7.  We test for 2.4.1 for the earliest version we know   the syscall is available.  */#if __LINUX_KERNEL_VERSION >= 132097 && (defined __i386__ || defined __sparc__)# define __ASSUME_FCNTL64		1#endif/* The AT_CLKTCK auxiliary vector entry was introduction in the 2.4.0   series.  */#if __LINUX_KERNEL_VERSION >= 132097# define __ASSUME_AT_CLKTCK		1#endif/* Arm got fcntl64 in 2.4.4, PowerPC and SH have it also in 2.4.4 (I   don't know when it got introduced).  But PowerPC64 does not support   separate FCNTL64 call, FCNTL is already 64-bit */#if __LINUX_KERNEL_VERSION >= 132100 \    && (defined __powerpc__ || defined __sh__) \    && !defined __powerpc64__# define __ASSUME_FCNTL64		1#endif/* The getdents64 syscall was introduced in 2.4.0-test7.  We test for   2.4.1 for the earliest version we know the syscall is available.  */#if __LINUX_KERNEL_VERSION >= 132097# define __ASSUME_GETDENTS64_SYSCALL	1#endif/* When did O_DIRECTORY became available?  Early in 2.3 but when?   Be safe, use 2.3.99.  */#if __LINUX_KERNEL_VERSION >= 131939# define __ASSUME_O_DIRECTORY		1#endif/* Starting with one of the 2.4.0 pre-releases the Linux kernel passes   up the page size information.  */#if __LINUX_KERNEL_VERSION >= 132097# define __ASSUME_AT_PAGESIZE		1#endif/* Starting with at least 2.4.0 the kernel passes the uid/gid unconditionally   up to the child.  */#if __LINUX_KERNEL_VERSION >= 132097# define __ASSUME_AT_XID		1#endif/* Starting with 2.4.5 kernels PPC passes the AUXV in the standard way   and the vfork syscall made it into the official kernel.  */#if __LINUX_KERNEL_VERSION >= (132096+5) && defined __powerpc__# define __ASSUME_STD_AUXV		1# define __ASSUME_VFORK_SYSCALL		1#endif/* Starting with 2.4.5 kernels the mmap2 syscall made it into the official   kernel.  But PowerPC64 does not support a separate MMAP2 call.  */#if __LINUX_KERNEL_VERSION >= (132096+5) && defined __powerpc__ \    && !defined __powerpc64__# define __ASSUME_MMAP2_SYSCALL		1#endif/* Starting with 2.4.21 PowerPC implements the new prctl syscall.   This allows applications to get/set the Floating Point Exception Mode.  */#if __LINUX_KERNEL_VERSION >= (132096+21) && defined __powerpc__# define __ASSUME_NEW_PRCTL_SYSCALL		1#endif/* Starting with 2.4.21 the PowerPC32 clone syscall works as expected.  */#if __LINUX_KERNEL_VERSION >= (132096+21) && defined __powerpc__ \    && !defined __powerpc64__# define __ASSUME_FIXED_CLONE_SYSCALL		1#endif/* Starting with 2.4.21 PowerPC64 implements the new rt_sigreturn syscall.   The new rt_sigreturn takes an ucontext pointer allowing rt_sigreturn   to be used in the set/swapcontext implementation.  */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久色在线视频| 亚洲人成网站影音先锋播放| 国产精品久久久久久妇女6080| 中文字幕一区三区| 久久精品理论片| 在线观看www91| 国产精品初高中害羞小美女文| 蜜臀av一区二区在线免费观看| 欧美在线一区二区三区| 国产欧美视频一区二区| 国产不卡在线播放| 国产精品区一区二区三区| 日本久久电影网| 视频一区二区国产| 久久亚洲影视婷婷| 色欧美乱欧美15图片| 三级影片在线观看欧美日韩一区二区| 337p亚洲精品色噜噜噜| 久久av资源站| 亚洲一区二区欧美| 精品剧情在线观看| 在线中文字幕一区二区| 日韩成人一区二区| 亚洲免费av网站| 久久蜜桃av一区精品变态类天堂| 91麻豆产精品久久久久久| 亚洲成av人片一区二区梦乃| 日本一区二区三区国色天香| 欧美亚洲禁片免费| 成人午夜又粗又硬又大| 亚洲国产精品久久久久婷婷884 | 91精品国产91久久久久久一区二区 | 国产精品久久三区| 国产无一区二区| 中文字幕日韩av资源站| 亚洲精品免费在线观看| 五月天视频一区| 国产v日产∨综合v精品视频| 蜜臀va亚洲va欧美va天堂| 石原莉奈在线亚洲三区| 亚洲国产另类av| 一区二区三区丝袜| 国产女人18毛片水真多成人如厕| 精品免费国产二区三区| 日韩免费高清av| 日韩欧美精品在线| 日韩美女主播在线视频一区二区三区| 欧美日本在线播放| 日韩免费视频一区| 欧美tk—视频vk| 亚洲国产成人在线| 中文字幕一区二区5566日韩| 亚洲色图视频网| 亚洲一区二区精品视频| 亚洲bt欧美bt精品| 国产一区二区三区免费看| 成人免费毛片高清视频| 日本高清视频一区二区| 在线亚洲人成电影网站色www| 色综合久久久久久久久久久| 欧美日韩综合在线| 久久色视频免费观看| 亚洲在线一区二区三区| 一区二区三区在线免费| 亚洲高清免费在线| 麻豆精品久久精品色综合| 成人爽a毛片一区二区免费| 99riav久久精品riav| 欧美一区二区免费| 中文幕一区二区三区久久蜜桃| 亚洲午夜私人影院| 激情久久久久久久久久久久久久久久| 国产在线视频一区二区三区| 91免费版在线| 精品国产污网站| 亚洲6080在线| 高清成人免费视频| 欧美一区二区三区的| 成人欧美一区二区三区小说| 麻豆免费精品视频| 欧美日韩国产在线观看| 国产精品久久久久精k8| 久草精品在线观看| 日本高清无吗v一区| 国产精品视频一二三区| 麻豆精品视频在线| 这里只有精品视频在线观看| 亚洲精品写真福利| 成人aa视频在线观看| 国产无遮挡一区二区三区毛片日本| 午夜伦理一区二区| 欧美亚洲精品一区| 一区二区三区日韩欧美| 色综合久久久久| 亚洲成人中文在线| 欧美乱妇23p| 美女视频免费一区| 国产日韩欧美一区二区三区综合| 狠狠色2019综合网| 亚洲欧美日韩国产中文在线| 91黄视频在线| 肉色丝袜一区二区| 国产日韩欧美激情| 精品污污网站免费看| 黑人精品欧美一区二区蜜桃| 中文子幕无线码一区tr| 欧美精品tushy高清| 日韩高清电影一区| 欧美美女黄视频| 一区二区三区四区不卡在线| 在线观看日韩一区| 日本成人在线不卡视频| 国产午夜久久久久| aaa亚洲精品一二三区| 亚洲激情av在线| 欧美xxxxx牲另类人与| 99国产精品久| 麻豆国产91在线播放| 亚洲老司机在线| 精品福利在线导航| 在线区一区二视频| 激情五月婷婷综合| 午夜视频在线观看一区二区三区| 欧美大尺度电影在线| 91福利国产精品| 激情综合一区二区三区| 亚洲国产日韩av| 国产精品高潮呻吟久久| 欧美精品一区二| 在线国产电影不卡| 成人高清视频在线| 国内精品在线播放| 国产精品久久久久婷婷| 欧美日韩精品三区| 91在线视频18| 成人免费毛片高清视频| 人禽交欧美网站| 精品一区二区国语对白| 日日夜夜精品视频天天综合网| 亚洲国产色一区| 亚洲黄色在线视频| 国产精品女同一区二区三区| 精品三级av在线| 欧美一级免费观看| 国产午夜精品一区二区 | 久久精品国产精品青草| 性做久久久久久免费观看欧美| 亚洲美女在线国产| 亚洲成人资源网| 三级亚洲高清视频| 喷白浆一区二区| 韩国一区二区视频| 成人av网站大全| 色综合久久天天| 欧美日韩国产123区| 精品国产1区二区| 国产午夜亚洲精品羞羞网站| 最新不卡av在线| 日本vs亚洲vs韩国一区三区二区| 午夜精品免费在线观看| 久久av中文字幕片| 91免费国产视频网站| 欧美精品日韩一本| www国产成人| 亚洲一级不卡视频| 精品亚洲aⅴ乱码一区二区三区| 国产夫妻精品视频| 欧美久久久久久久久| 国产三级三级三级精品8ⅰ区| 亚洲男人都懂的| 国产一区二区三区免费看| 色香蕉久久蜜桃| 久久亚区不卡日本| 亚洲第一激情av| caoporm超碰国产精品| 亚洲精品在线免费观看视频| 亚洲欧美日韩国产手机在线| 蜜桃久久久久久久| 欧美影院一区二区三区| 欧美激情在线一区二区| 青青草成人在线观看| 色婷婷久久久亚洲一区二区三区| 欧美成人伊人久久综合网| 亚洲免费伊人电影| bt欧美亚洲午夜电影天堂| 国产欧美久久久精品影院| 久久99深爱久久99精品| 91精品国产综合久久精品麻豆 | 欧美三日本三级三级在线播放| 欧美韩国日本不卡| 国产成人无遮挡在线视频| 日韩欧美激情一区| 国产一区二区按摩在线观看| 日韩欧美中文字幕制服| 五月天亚洲婷婷| 日韩一区二区电影在线| 日本中文字幕不卡| 日韩欧美在线不卡| 精品一区二区在线免费观看| 久久在线观看免费|