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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? kernel-features.h

?? glibc 2.9,最新版的C語言庫函數(shù)
?? H
?? 第 1 頁 / 共 2 頁
字號(hào):
#if __LINUX_KERNEL_VERSION >= (132096+21) && defined __powerpc64__# define __ASSUME_NEW_RT_SIGRETURN_SYSCALL		1#endif/* On x86, the set_thread_area syscall was introduced in 2.5.29, but its   semantics was changed in 2.5.30, and again after 2.5.31.  */#if __LINUX_KERNEL_VERSION >= 132384 && defined __i386__# define __ASSUME_SET_THREAD_AREA_SYSCALL	1#endif/* The vfork syscall on x86 and arm was definitely available in 2.4.  */#if __LINUX_KERNEL_VERSION >= 132097 && defined __i386__# define __ASSUME_VFORK_SYSCALL		1#endif/* Alpha switched to a 64-bit timeval sometime before 2.2.0.  */#if __LINUX_KERNEL_VERSION >= 131584 && defined __alpha__# define __ASSUME_TIMEVAL64		1#endif/* The late 2.5 kernels saw a lot of new CLONE_* flags.  Summarize   their availability with one define.  The changes were made first   for i386 and the have to be done separately for the other archs.   For i386 we pick 2.5.50 as the first version with support.   For ia64, s390*, PPC, x86-64, and SH we pick 2.5.64 as the first   version with support.  */#if ((__LINUX_KERNEL_VERSION >= 132402 && defined __i386__)		\     || (__LINUX_KERNEL_VERSION >= 132416				\	 && (defined __ia64__ || defined __s390__			\	     || defined __powerpc__ || defined __x86_64__ || defined __sh__)))# define __ASSUME_CLONE_THREAD_FLAGS	1#endif/* Beginning with 2.5.63 support for realtime and monotonic clocks and   timers based on them is available.  */#if __LINUX_KERNEL_VERSION >= 132415# define __ASSUME_POSIX_TIMERS		1#endif/* Beginning with 2.6.12 the clock and timer supports CPU clocks.  */#if __LINUX_KERNEL_VERSION >= 0x2060c# define __ASSUME_POSIX_CPU_TIMERS	1#endif/* With kernel 2.4.17 we always have netlink support.  */#if __LINUX_KERNEL_VERSION >= (132096+17)# define __ASSUME_NETLINK_SUPPORT	1#endif/* The requeue futex functionality was introduced in 2.5.70.  */#if __LINUX_KERNEL_VERSION >= 132422# define __ASSUME_FUTEX_REQUEUE	1#endif/* The statfs64 syscalls are available in 2.5.74.  */#if __LINUX_KERNEL_VERSION >= 132426# define __ASSUME_STATFS64	1#endif/* Starting with at least 2.5.74 the kernel passes the setuid-like exec   flag unconditionally up to the child.  */#if __LINUX_KERNEL_VERSION >= 132426# define __ASSUME_AT_SECURE	1#endif/* Starting with the 2.5.75 kernel the kernel fills in the correct value   in the si_pid field passed as part of the siginfo_t struct to signal   handlers.  */#if __LINUX_KERNEL_VERSION >= 132427# define __ASSUME_CORRECT_SI_PID	1#endif/* The tgkill syscall was instroduced for i386 in 2.5.75.  For Alpha   it was introduced in 2.6.0-test1 which unfortunately cannot be   distinguished from 2.6.0.  On x86-64, ppc, and ppc64 it was   introduced in 2.6.0-test3. */#if (__LINUX_KERNEL_VERSION >= 132427 && defined __i386__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __alpha__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __x86_64__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __powerpc__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __sh__)# define __ASSUME_TGKILL	1#endif/* The utimes syscall has been available for some architectures   forever.  For x86 it was introduced after 2.5.75, for x86-64,   ppc, and ppc64 it was introduced in 2.6.0-test3.  */#if defined __alpha__ || defined __ia64__ \    || defined __sparc__ \    || (__LINUX_KERNEL_VERSION > 132427 && defined __i386__) \    || (__LINUX_KERNEL_VERSION > 132609 && defined __x86_64__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __powerpc__) \    || (__LINUX_KERNEL_VERSION >= 132609 && defined __sh__)# define __ASSUME_UTIMES	1#endif// XXX Disabled for now since the semantics we want is not achieved.#if 0/* The CLONE_STOPPED flag was introduced in the 2.6.0-test1 series.  */#if __LINUX_KERNEL_VERSION >= 132609# define __ASSUME_CLONE_STOPPED	1#endif#endif/* The fixed version of the posix_fadvise64 syscall appeared in   2.6.0-test3.  At least for x86.  Powerpc support appeared in   2.6.2, but for 32-bit userspace only.  */#if (__LINUX_KERNEL_VERSION >= 132609 && defined __i386__) \    || (__LINUX_KERNEL_VERSION >= 132610 && defined __powerpc__ \       && !defined __powerpc64__)# define __ASSUME_FADVISE64_64_SYSCALL	1#endif/* The PROT_GROWSDOWN/PROT_GROWSUP flags were introduced in the 2.6.0-test   series.  */#if __LINUX_KERNEL_VERSION >= 132609# define __ASSUME_PROT_GROWSUPDOWN	1#endif/* Starting with 2.6.0 PowerPC adds signal/swapcontext support for Vector   SIMD (AKA Altivec, VMX) instructions and register state.  This changes   the overall size of the sigcontext and adds the swapcontext syscall.  */#if __LINUX_KERNEL_VERSION >= 132608 && defined __powerpc__# define __ASSUME_SWAPCONTEXT_SYSCALL	1#endif/* The CLONE_DETACHED flag is not necessary in 2.6.2 kernels, it is   implied.  */#if __LINUX_KERNEL_VERSION >= 132610# define __ASSUME_NO_CLONE_DETACHED	1#endif/* Starting with version 2.6.4-rc1 the getdents syscall returns d_type   information as well and in between 2.6.5 and 2.6.8 most compat wrappers   were fixed too.  Except s390{,x} which was fixed in 2.6.11.  */#if (__LINUX_KERNEL_VERSION >= 0x020608 && !defined __s390__) \    || (__LINUX_KERNEL_VERSION >= 0x02060b && defined __s390__)# define __ASSUME_GETDENTS32_D_TYPE	1#endif/* Starting with version 2.5.3, the initial location returned by `brk'   after exec is always rounded up to the next page.  */#if __LINUX_KERNEL_VERSION >= 132355# define __ASSUME_BRK_PAGE_ROUNDED	1#endif/* Starting with version 2.6.9, the waitid system call is available.   Except for powerpc{,64} and s390{,x}, where it is available in 2.6.12.  */#if (__LINUX_KERNEL_VERSION >= 0x020609 \     && !defined __powerpc__ && !defined __s390__) \    || (__LINUX_KERNEL_VERSION >= 0x02060c \	&& (defined __powerpc__ || defined __s390__))# define __ASSUME_WAITID_SYSCALL	1#endif/* Starting with version 2.6.9, SSI_IEEE_RAISE_EXCEPTION exists.  */#if __LINUX_KERNEL_VERSION >= 0x020609 && defined __alpha__#define __ASSUME_IEEE_RAISE_EXCEPTION	1#endif/* On sparc64 stat64/lstat64/fstat64 syscalls were introduced in 2.6.12.  */#if __LINUX_KERNEL_VERSION >= 0x02060c && defined __sparc__ \    && defined __arch64__# define __ASSUME_STAT64_SYSCALL	1#endif/* Early kernel used "shm" as the filesystem name for the filesystem used   for shm_open etc.  Later it is "tmpfs".  2.4.20 is a safe bet for the   cutover.  */#if __LINUX_KERNEL_VERSION >= 0x02041a# define __ASSUME_TMPFS_NAME	1#endif/* pselect/ppoll were introduced just after 2.6.16-rc1.  Due to the way   the kernel versions are advertised we can only rely on 2.6.17 to have   the code.  On x86_64 and SH this appeared first in 2.6.19-rc1,   on ia64 in 2.6.22-rc1 and on alpha just after 2.6.22-rc1.  */#if __LINUX_KERNEL_VERSION >= 0x020611 \    && ((!defined __x86_64__ && !defined __sh__ && !defined __ia64__ \	 && !defined __alpha__) \	|| (__LINUX_KERNEL_VERSION >= 0x020613 \	    && (defined __x86_64__ || defined __sh__)) \	|| (__LINUX_KERNEL_VERSION >= 0x020616 && defined __ia64__) \	|| (__LINUX_KERNEL_VERSION >= 0x020617 && defined __alpha__))# define __ASSUME_PSELECT	1# define __ASSUME_PPOLL		1#endif/* The *at syscalls were introduced just after 2.6.16-rc1.  Due to the way the   kernel versions are advertised we can only rely on 2.6.17 to have   the code.  On PPC they were introduced in 2.6.17-rc1, on SH in 2.6.19-rc1   and on Alpha just after 2.6.22-rc1.  */#if __LINUX_KERNEL_VERSION >= 0x020611 \    && ((!defined __sh__ && !defined __alpha__) \	|| (__LINUX_KERNEL_VERSION >= 0x020613 && defined __sh__) \	|| (__LINUX_KERNEL_VERSION >= 0x020617 && defined __alpha__))# define __ASSUME_ATFCTS	1#endif/* Support for inter-process robust mutexes was added in 2.6.17.  */#if __LINUX_KERNEL_VERSION >= 0x020611 \    && ((!defined __sh__ && !defined __alpha__) \	|| (__LINUX_KERNEL_VERSION >= 0x020613 && defined __sh__) \	|| (__LINUX_KERNEL_VERSION >= 0x020617 && defined __alpha__))# define __ASSUME_SET_ROBUST_LIST	1#endif/* Support for PI futexes was added in 2.6.18.  */#if __LINUX_KERNEL_VERSION >= 0x020612# define __ASSUME_FUTEX_LOCK_PI	1#endif/* Support for utimensat syscall was added in 2.6.22, on alpha and s390   only after 2.6.22-rc1.  */#if __LINUX_KERNEL_VERSION >= 0x020616 \    && ((!defined __sh__ && !defined __alpha__) \	|| __LINUX_KERNEL_VERSION >= 0x020617)# define __ASSUME_UTIMENSAT	1#endif/* Support for private futexes was added in 2.6.22.  */#if __LINUX_KERNEL_VERSION >= 0x020616# define __ASSUME_PRIVATE_FUTEX	1#endif/* Support for fallocate was added in 2.6.23, on s390   only after 2.6.23-rc1.  */#if __LINUX_KERNEL_VERSION >= 0x020617 \    && ((!defined __s390__ && !defined __alpha__) \	|| (__LINUX_KERNEL_VERSION >= 0x020618 && defined __s390__))# define __ASSUME_FALLOCATE	1#endif/* Support for various CLOEXEC and NONBLOCK flags was added for x86,   x86-64, PPC, IA-64, SPARC< and S390 in 2.6.23.  */#if __LINUX_KERNEL_VERSION >= 0x020617 \    && (defined __i386__ || defined __x86_64__ || defined __powerpc__ \	|| defined __ia64__ || defined __sparc__ || defined __s390__)# define __ASSUME_O_CLOEXEC	1#endif/* Support for ADJ_OFFSET_SS_READ was added in 2.6.24.  */#if __LINUX_KERNEL_VERSION >= 0x020618# define __ASSUME_ADJ_OFFSET_SS_READ	1#endif/* Support for various CLOEXEC and NONBLOCK flags was added for x86,   x86-64, PPC, IA-64, and SPARC in 2.6.27.  */#if __LINUX_KERNEL_VERSION >= 0x02061b \    && (defined __i386__ || defined __x86_64__ || defined __powerpc__ \	|| defined __ia64__ || defined __sparc__ || __s390__)# define __ASSUME_SOCK_CLOEXEC	1# define __ASSUME_IN_NONBLOCK	1# define __ASSUME_PIPE2		1# define __ASSUME_PACCEPT	1#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美日韩国产综合| 中文字幕五月欧美| 91一区二区三区在线播放| 日韩国产一区二| 1024成人网色www| 精品88久久久久88久久久| 91久久精品一区二区三区| 国产成人一区在线| 免费在线观看不卡| 亚洲成在人线免费| 尤物在线观看一区| 国产精品女同互慰在线看| 日韩免费高清电影| 在线不卡欧美精品一区二区三区| 99久久夜色精品国产网站| 狠狠色狠狠色合久久伊人| 午夜激情久久久| 亚洲国产一区在线观看| 亚洲人成网站色在线观看| 国产精品网站在线| 久久夜色精品国产噜噜av| 这里只有精品电影| 欧美日韩国产综合久久| 91国偷自产一区二区三区观看| 粉嫩欧美一区二区三区高清影视| 国产精品自拍毛片| 国产一区二区三区| 韩日欧美一区二区三区| 日本麻豆一区二区三区视频| 日韩综合在线视频| 视频一区视频二区中文| 亚洲va欧美va人人爽| 午夜久久福利影院| 午夜精品一区二区三区三上悠亚| 亚洲二区在线视频| 亚洲午夜精品久久久久久久久| 樱花影视一区二区| 亚洲福利一区二区| 日本午夜精品视频在线观看| 图片区小说区国产精品视频| 无码av中文一区二区三区桃花岛| 亚洲电影在线播放| 奇米色一区二区三区四区| 日本成人在线看| 极品美女销魂一区二区三区| 精品中文字幕一区二区| 国产乱码精品一区二区三区五月婷| 韩国成人在线视频| 成人一级视频在线观看| 91影院在线观看| 色综合久久99| 欧美精品一级二级| 日韩色视频在线观看| 久久综合中文字幕| 国产精品久久一级| 亚洲一区二区av电影| 日韩和欧美一区二区三区| 精品伊人久久久久7777人| 高清国产一区二区三区| 91丨九色丨黑人外教| 欧美日韩国产成人在线91| 日韩亚洲国产中文字幕欧美| 日本一区二区不卡视频| 亚洲六月丁香色婷婷综合久久| 性欧美大战久久久久久久久| 蜜桃视频免费观看一区| 大陆成人av片| 欧美日韩激情一区二区三区| 久久一留热品黄| 亚洲精品视频在线看| 蜜臀精品久久久久久蜜臀| 国产成人日日夜夜| 在线观看亚洲精品| 欧美tk—视频vk| 亚洲乱码国产乱码精品精可以看| 日本不卡123| av毛片久久久久**hd| 欧美三级视频在线观看| 久久久亚洲午夜电影| 亚洲精品高清在线观看| 久久国内精品自在自线400部| 懂色一区二区三区免费观看| 欧美日本不卡视频| 国产精品美女久久久久高潮| 婷婷综合在线观看| 不卡av在线免费观看| 日韩一级免费一区| 亚洲激情五月婷婷| 国产高清在线精品| 欧美日韩欧美一区二区| 国产精品视频看| 九色综合狠狠综合久久| 欧美性猛交xxxx黑人交| 国产精品麻豆网站| 久久99精品久久只有精品| 色www精品视频在线观看| 久久亚洲综合色一区二区三区| 亚洲成人综合视频| 色婷婷综合久色| 欧美激情一区二区三区四区| 美国十次了思思久久精品导航| 91麻豆国产在线观看| 久久精品一区蜜桃臀影院| 偷拍日韩校园综合在线| 97久久精品人人做人人爽50路| 精品国产乱码久久| 日韩一区精品字幕| 欧美视频日韩视频| 亚洲品质自拍视频网站| 国产成都精品91一区二区三| 日韩精品一区二区三区蜜臀| 亚洲国产美女搞黄色| 99re这里只有精品首页| 久久精品亚洲麻豆av一区二区| 蜜臂av日日欢夜夜爽一区| 欧美另类高清zo欧美| 樱花影视一区二区| 91在线视频在线| 国产精品久久久久久久久果冻传媒| 国产原创一区二区| 精品国产一区a| 秋霞电影网一区二区| 91精品国产综合久久久久久久 | 一区二区三区在线看| 岛国精品在线观看| 国产精品毛片久久久久久久| 国内一区二区视频| 2欧美一区二区三区在线观看视频| 免费久久精品视频| 日韩亚洲欧美一区二区三区| 日本最新不卡在线| 日韩一区二区不卡| 久久爱www久久做| 久久综合视频网| 国产99精品国产| 国产精品青草久久| av日韩在线网站| 亚洲美女区一区| 欧美视频中文字幕| 午夜婷婷国产麻豆精品| 日韩小视频在线观看专区| 久草在线在线精品观看| 国产三级精品三级| 成人午夜电影久久影院| 中文字幕色av一区二区三区| 色噜噜久久综合| 婷婷开心久久网| 欧美tickling挠脚心丨vk| 国产mv日韩mv欧美| 国产精品久久久久久久久晋中| 99re热这里只有精品视频| 亚洲专区一二三| 欧美一区二区三区在线观看视频| 老汉av免费一区二区三区| 亚洲精品在线观看网站| www.欧美色图| 亚洲成精国产精品女| 精品久久久久一区| av一区二区不卡| 午夜精品一区在线观看| 精品成人佐山爱一区二区| 成人综合在线视频| 亚洲香蕉伊在人在线观| 精品少妇一区二区三区日产乱码| 国产精品99久久久久| 亚洲人成网站在线| 日韩一二在线观看| www..com久久爱| 日韩国产精品91| 中文字幕精品一区二区精品绿巨人| 色播五月激情综合网| 久久99国产精品成人| 亚洲人成电影网站色mp4| 91精品国产一区二区| 99久久久免费精品国产一区二区| 日韩精品一区第一页| 欧美极品少妇xxxxⅹ高跟鞋 | 乱一区二区av| 国产精品不卡一区| 在线观看av一区二区| 国产精品18久久久久久久久 | 欧美伦理视频网站| 国产黑丝在线一区二区三区| 一区二区成人在线视频| 久久久久久久免费视频了| 欧美中文字幕不卡| 国产成人免费在线观看| 午夜日韩在线电影| 日韩一区在线免费观看| 精品久久国产老人久久综合| 色8久久人人97超碰香蕉987| 韩国女主播成人在线观看| 一区二区三区高清| 亚洲国产精品高清| 日韩欧美成人激情| 在线观看成人免费视频| zzijzzij亚洲日本少妇熟睡| 久久福利资源站| 婷婷国产在线综合| 一区二区三区在线免费观看|