├── LinuxOps ├── README.md ├── UNIX网络编程卷1 └── UNIX网络编程 │ ├── .DS_Store │ ├── 10SCTP客户服务器程序例子 │ ├── 10.10服务器程序请求更多流的改动部分 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_getnostrm.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv02.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 10.11服务器程序应答同时终止关联的改动部分 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_getnostrm.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv03.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 10.12客户程序预先终止关联的改动部分 │ │ ├── error.c │ │ ├── sctp_strcli.c │ │ ├── sctp_strcliecho.c │ │ ├── sctp_wrapper.c │ │ ├── sctpclient02.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 10.2SCTP流分回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_getnostrm.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 10.3SCTP流分回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sctp_strcli.c │ │ ├── sctp_strcliecho.c │ │ ├── sctp_wrapper.c │ │ ├── sctpclient01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 10.4lib sctpstr_cli函数 │ │ ├── error.c │ │ ├── sctp_strcli.c │ │ ├── sctp_wrapper.c │ │ └── unp.h │ ├── 10.7lib sctpstr_cli_echoall函数 │ │ ├── error.c │ │ ├── sctp_strcliecho.c │ │ ├── sctp_wrapper.c │ │ └── unp.h │ ├── 10.9lib sctpstr_cli函数改动部分 │ │ ├── error.c │ │ ├── sctp_strcliecho2.c │ │ ├── sctp_wrapper.c │ │ └── unp.h │ └── linux中sctp实现差异问题.txt │ ├── 11名字与地址转换 │ ├── 11.10lib tcp_connect函数 │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 11.11用tcp_connect重新编写的时间获取客户程序 │ │ ├── a.out │ │ ├── daytimetcpcli.c │ │ ├── error.c │ │ ├── sock_ntop_host.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 11.12lib tcp_listen函数 │ │ ├── error.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 11.13用tcp_listen重新编写的时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimetcpsrv1.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 11.14使用tcp_listen的协议无关时间获取服务器程序(最终) │ │ ├── daytime │ │ ├── daytimetcpsrv2.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 11.15lib udp_client函数 │ │ ├── error.c │ │ ├── udp_client.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 11.16使用udp_client的UDP时间获取客户程序 │ │ ├── a.out │ │ ├── daytimeudpcli1.c │ │ ├── error.c │ │ ├── sock_ntop_host.c │ │ ├── udp_client.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 11.17lib upd_connect函数 │ │ ├── error.c │ │ ├── udp_connect.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 11.18lib udp_server函数 │ │ ├── error.c │ │ ├── udp_server.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 11.19协议无关的udp时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimeudpsrv2.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── udp_server.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 11.3调用gethostbyname并现实返回的信息 │ │ ├── a.out │ │ ├── error.c │ │ ├── hostent.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 11.4使用gethostbyname和getservbyname的时间获取客户程序 │ │ ├── a.out │ │ ├── daytimetcpcli1.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 11.9lib host_serv函数 │ │ ├── error.c │ │ ├── host_serv.c │ │ └── unp.h │ ├── 13守护进程和inetd超级服务器 │ ├── 13.11lib daemon_inetd函数 │ │ ├── daemon_inetd.c │ │ ├── error.c │ │ └── unp.h │ ├── 13.12可由inetd启动的协议无关时间获取服务器程序 │ │ ├── daemon_inetd.c │ │ ├── daytimetcpsrv3.c │ │ ├── error.c │ │ ├── mydaytime │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 13.4lib daemon_init函数 │ │ ├── daemon_init.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ └── wrapunix.c │ └── 13.5作为守护进程运行的协议无关时间获取服务器程序 │ │ ├── a.out │ │ ├── daemon_init.c │ │ ├── daytimetcpsrv2.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 14高级IaO函数 │ ├── 14.14lib 5-5重写改用标准IlO的str_echo函数 │ │ └── str_echo_stdio02.c │ ├── 14.14lib 5-5重写改用标准InO的str_echo函数 │ │ └── unp.h │ ├── 14.14lib 5-5重写改用标准IpO的str_echo函数 │ │ └── wrapstdio.c │ ├── 14.14lib 5-5重写改用标准IxO的str_echo函数 │ │ └── error.c │ ├── 14.15lib 6-13使用devpoll的str_cli函数 │ │ ├── error.c │ │ ├── str_cli_poll03.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 14.1lib 带超时的connect │ │ ├── connect_timeo.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 14.2lib 8-8的dg_cli函数 使用alarm超时recvfrom │ │ ├── dgclitimeo3.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 14.3lib readable_timeo函数 等待描述符在指定时间内变得可读 │ │ ├── error.c │ │ ├── readable_timeo.c │ │ └── unp.h │ ├── 14.4lib 8-8调用readable_timeo设置超时的dg_cli │ │ ├── dgclitimeo1.c │ │ ├── error.c │ │ ├── readable_timeo.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 14.5lib 8-8使用SO_RCVTIMEO套接字选项设置超时的dg_cli函数 │ │ ├── dgclitimeo2.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 15UNIX域协议 │ ├── 15.10lib my_open函数 │ │ ├── error.c │ │ ├── myopen.c │ │ ├── read_fd.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 15.11lib read_fd函数 │ │ ├── error.c │ │ ├── read_fd.c │ │ └── unp.h │ ├── 15.12openfile函数(程序) │ │ ├── a.out │ │ ├── error.c │ │ ├── openfile.c │ │ ├── unp.h │ │ └── write_fd.c │ ├── 15.13lib write_fd函数 │ │ ├── error.c │ │ ├── unp.h │ │ └── write_fd.c │ ├── 15.14lib read_cred函数(凭证) │ │ ├── error.c │ │ ├── readcred.c │ │ └── unp.h │ ├── 15.15lib str_echo函数 请求客户凭证 │ │ └── strecho.c │ ├── 15.2给一个unix域套接字bind一个路径名 │ │ ├── a.out │ │ ├── error.c │ │ ├── unixbind.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 15.3 5-12使用unix域字节流协议的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── unixstrserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 15.4 5-4使用unix域字节流协议的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── unixstrcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 15.5 8-3使用unix域数据报协议的回射服务器程序 │ │ ├── a.out │ │ ├── dg_echo.c │ │ ├── error.c │ │ ├── unixdgserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 15.6 8-7使用unix域数据报协议的客户程序 │ │ ├── a.out │ │ ├── dg_cli.c │ │ ├── error.c │ │ ├── unixdgcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapstdio.c │ └── 15.9mycat程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── mycat.c │ │ ├── myopen.c │ │ ├── read_fd.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 16非阻塞式IO │ ├── 16.10lib 使用fock的str_cli函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── strclifork.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 16.11lib 发起一个非阻塞connect │ │ ├── connect_nonb.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 16.14web.h头文件 │ │ └── web.h │ ├── 16.15web.c程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── home_page.c │ │ ├── host_serv.c │ │ ├── start_connect.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── web.c │ │ ├── web.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ ├── write_get_cmd.c │ │ └── writen.c │ ├── 16.16lib home_page函数 │ │ ├── error.c │ │ ├── home_page.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── web.h │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 16.17lib start_connect发起非阻塞的connect │ │ ├── error.c │ │ ├── host_serv.c │ │ ├── start_connect.c │ │ ├── unp.h │ │ ├── web.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ ├── write_get_cmd.c │ │ └── writen.c │ ├── 16.18lib write_get_cmd函数 │ │ ├── error.c │ │ ├── unp.h │ │ ├── web.h │ │ ├── write_get_cmd.c │ │ └── writen.c │ ├── 16.21 5-4建立连接并发送一个RST的TCP回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── tcpcli03.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 16.3lib str_cli函数 │ │ ├── error.c │ │ ├── gf_time.c │ │ ├── strclinonb.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 16.6lib gf_time函数 │ │ ├── error.c │ │ ├── gf_time.c │ │ └── unp.h │ ├── 17ioctrl操作 │ ├── 17.13输出一个主机的硬件地址 │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── prmac.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 17.5unpifi.h头文件 │ │ └── unpifi.h │ ├── 17.6调用get_ifi_info函数的prifinfo程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── prifinfo.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 17.7lib get_ifi_info函数 │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 18路由套接字 │ ├── 18.10lib 把一个掩码值转换成一个表达式 │ │ ├── error.c │ │ ├── sock_masktop.c │ │ ├── unp.h │ │ └── unproute.h │ ├── 18.14检查UDP校验是否开启 │ │ ├── a.out │ │ ├── checkudpsum.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── unproute.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 18.15lib 调用sysctl返回接口列表net_rt_iflist │ │ ├── error.c │ │ ├── net_rt_iflist.c │ │ ├── unp.h │ │ └── unproute.h │ ├── 18.16lib get_ifi_info函数 │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── get_rtaddrs.c │ │ ├── net_rt_iflist.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 18.18lib 给定接口名字返回其索引if_nametoindex函数 │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── if_nametoindex.c │ │ ├── net_rt_iflist.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ └── unproute.h │ ├── 18.19lib 给定接口索引返回其接口名字if_indextoname函数 │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── if_indextoname.c │ │ ├── net_rt_iflist.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ └── unproute.h │ ├── 18.20lib 返回所有接口名字和索引if_nameindex函数 │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── if_nameindex.c │ │ ├── net_rt_iflist.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ └── unproute.h │ ├── 18.6通过路由套接字发出RTM_GET命令的程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── getrt.c │ │ ├── sock_masktop.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 18.9lib 构造指向路由消息中各个套接字地址结构的指针数组 │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── unp.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 19秘钥管理套接字 │ ├── 19.11添加一个静态SADB表项 │ │ ├── a.out │ │ ├── add.c │ │ ├── error.c │ │ ├── name.c │ │ ├── printsadbmsg.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 19.15通过秘钥管理套接字注册进程程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── name.c │ │ ├── printsadbmsg.c │ │ ├── register.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 19.5通过秘钥管理套接字发出SADB_DUMP命令的程序 │ │ ├── a.out │ │ ├── dump.c │ │ ├── error.c │ │ ├── name.c │ │ ├── printsadbmsg.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 1简介 │ ├── 1.5TCP时间获取客户程序 │ │ ├── a.out │ │ ├── daytimetcpcli.c │ │ ├── error.c │ │ └── unp.h │ ├── 1.6适合于IPv6的图1.5所示程序的修改版 │ │ ├── a.out │ │ ├── daytimetcpcliv6.c │ │ ├── error.c │ │ └── unp.h │ └── 1.9TCP时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimetcpsrv.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20广播 │ ├── 20.10lib 使用信号处理函数到主控函数的管道作为IPC │ │ ├── dgclibcast6.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.5lib 广播请求的dg_cli函数 │ │ ├── dgclibcast1.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.6lib 在for循环内执行期间阻塞信号(不正确) │ │ ├── dgclibcast3.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.7lib 使用pselect阻塞和解阻塞信号 │ │ ├── dgclibcast4.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.8lib peslect函数(简单但不完全正确) │ │ ├── error.c │ │ ├── pselect.c │ │ └── unp.h │ └── 20.9lib 从信号处理函数中使用sigsetjmp siglongjmp │ │ ├── dgclibcast5.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 21多播 │ ├── 21.10lib 加入一个多播组,IP无关套接字mcast_join │ │ ├── error.c │ │ ├── family_to_level.c │ │ ├── mcast_join.c │ │ └── unp.h │ ├── 21.13lib 设置多播回馈选项mcast_set_loop │ │ ├── error.c │ │ ├── mcast_set_loop.c │ │ ├── sockfd_to_family.c │ │ └── unp.h │ ├── 21.14SAP声明接收程序的main函数 │ │ ├── a.out │ │ ├── error.c │ │ ├── family_to_level.c │ │ ├── loop.c │ │ ├── main.c │ │ ├── mcast_join.c │ │ ├── mysdr.h │ │ ├── sock_ntop.c │ │ ├── udp_client.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 21.15lib 接收并显示SAP声明的循环loop函数 │ │ ├── error.c │ │ ├── loop.c │ │ ├── mysdr.h │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 21.17创建套接字,fork,在启动发送进程和接受进程 │ │ ├── a.out │ │ ├── error.c │ │ ├── family_to_level.c │ │ ├── main.c │ │ ├── mcast_join.c │ │ ├── mcast_set_loop.c │ │ ├── recv.c │ │ ├── send.c │ │ ├── sock_ntop.c │ │ ├── sockfd_to_family.c │ │ ├── udp_client.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 21.18lib 每5秒钟发送一个多播数据包 │ │ ├── error.c │ │ ├── send.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 21.19lib 接收到达所加入组的所有多播数据报 │ │ ├── error.c │ │ ├── recv.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 21.20ntp.h NTP分组格式与定义 │ │ └── sntp.h │ ├── 21.21ntp的main函数 │ │ ├── error.c │ │ ├── main.c │ │ ├── sntp.h │ │ └── unp.h │ └── 21.22lib sntp_proc函数 处理ntp分组 │ │ ├── error.c │ │ ├── sntp.h │ │ ├── sntp_proc.c │ │ └── unp.h │ ├── 22高级UDP套接字编程 │ ├── 22.10unprtt.h头文件 │ │ └── unprtt.h │ ├── 22.11lib 各种rtt函数 │ │ ├── error.c │ │ ├── rtt.c │ │ ├── unp.h │ │ ├── unprtt.h │ │ └── wrapunix.c │ ├── 22.15捆绑所有地址的UDP服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── get_rtaddrs.c │ │ ├── net_rt_iflist.c │ │ ├── sock_ntop.c │ │ ├── udpserv03.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 22.1lib recvfrom_flags函数 │ │ ├── error.c │ │ ├── recvfromflags.c │ │ └── unp.h │ ├── 22.4lib 调用recvfrom_flags函数的dg_echo函数 │ │ ├── dgechoaddr.c │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── if_indextoname.c │ │ ├── net_rt_iflist.c │ │ ├── recvfromflags.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ └── wrapsock.c │ ├── 22.6lib 调用我们的dg_send_recv函数的dg_cli函数 │ │ ├── dg_cli.c │ │ ├── dg_send_recv.c │ │ ├── error.c │ │ ├── rtt.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── unprtt.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 22.8lib dg_send_recv函数 │ │ ├── dg_send_recv.c │ │ ├── error.c │ │ ├── rtt.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── unprtt.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 23高级SCTP套接字编程 │ ├── 23.10lib 处理通知的sctp_strcli函数 │ │ ├── error.c │ │ ├── sctp_check_notify.c │ │ ├── sctp_print_addrs.c │ │ ├── sctp_strcli1.c │ │ ├── sctp_wrapper.c │ │ ├── sock_ntop.c │ │ └── unp.h │ ├── 23.11lib 通知处理函数check_notification │ │ ├── error.c │ │ ├── sctp_check_notify.c │ │ ├── sctp_print_addrs.c │ │ ├── sock_ntop.c │ │ └── unp.h │ ├── 23.12lib 地址列表显示函数 │ │ ├── error.c │ │ ├── sctp_print_addrs.c │ │ ├── sock_ntop.c │ │ └── unp.h │ ├── 23.13lib 从IP地址到关联ID的转换函数 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ └── unp.h │ ├── 23.14lib 心搏控制使用函数 │ │ ├── error.c │ │ ├── sctp_modify_hb.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 23.15一个并发SCTP服务器程序 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv_fork.c │ │ ├── str_echo.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 23.1开启自动关闭特性的服务器程序 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_getnostrm.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv04.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 23.2lib 处理部分递送的API │ │ ├── error.c │ │ ├── sctp_pdapircv.c │ │ ├── sctp_wrapper.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 23.3使用部分递送API的服务器程序 │ │ ├── error.c │ │ ├── sctp_addr_to_associd.c │ │ ├── sctp_getnostrm.c │ │ ├── sctp_pdapircv.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv05.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 23.4lib 通知显示实用函数 │ │ ├── error.c │ │ ├── sctp_displayevents.c │ │ ├── sctp_wrapper.c │ │ └── unp.h │ ├── 23.5使用通知的服务器程序 │ │ ├── error.c │ │ ├── sctp_displayevents.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv06.c │ │ └── unp.h │ ├── 23.6lib 发送无序数据的sctp_strcli_un函数 │ │ ├── error.c │ │ ├── sctp_strcli_un.c │ │ ├── sctp_wrapper.c │ │ └── unp.h │ ├── 23.7lib 捆绑一个地址子集的函数 │ │ ├── error.c │ │ ├── host_serv.c │ │ ├── sctp_bindargs.c │ │ ├── sctp_wrapper.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 23.8使用数目可变的一组地址的服务器程序 │ │ ├── error.c │ │ ├── host_serv.c │ │ ├── sctp_bindargs.c │ │ ├── sctp_wrapper.c │ │ ├── sctpserv07.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 23.9设置接收关联变动通知的客户程序 │ │ ├── error.c │ │ ├── sctp_check_notify.c │ │ ├── sctp_print_addrs.c │ │ ├── sctp_strcli1.c │ │ ├── sctp_wrapper.c │ │ ├── sctpclient04.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ └── linux中sctp实现差异问题.txt │ ├── 24带外数据 │ ├── 24.10带外数据发送程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── tcpsend05.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.11带外数据接收程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── tcprecv05.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.12紧挨着发送两个带外字节 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── tcpsend06.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.14lib 客户程序心搏函数 │ │ ├── error.c │ │ ├── heartbeatcli.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.15lib 服务器程序心搏函数 │ │ ├── error.c │ │ ├── heartbeatserv.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.3简单的带外发送程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── tcpsend01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 24.4简单的带外接收程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── tcprecv01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.5(不正确)使用select得到带外数据通知的接收程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_listen.c │ │ ├── tcprecv02.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.6正确的select异常条件程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_listen.c │ │ ├── tcprecv03.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 24.7lib 使用ioctl实现的sockatmark函数 │ │ ├── error.c │ │ ├── sockatmark.c │ │ └── unp.h │ ├── 24.8带外数据发送程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── tcpsend04.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ └── 24.9调用sockatmark的接收程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_listen.c │ │ ├── tcprecv04.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 25信号驱动式IuO │ └── 25.2lib 信号驱动式dg_echo函数 │ │ ├── dgecho01.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 26线程 │ ├── 26.11lib 线程安全的readline函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wrappthread.c │ │ └── wrapunix.c │ ├── 26.13Web客户同时链接 │ │ ├── error.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web01.c │ │ ├── wrappthread.c │ │ └── wrapunix.c │ ├── 26.17两个线程不正确的递增一格全局变量 │ │ ├── a.out │ │ ├── error.c │ │ ├── example01.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ └── wrappthread.c │ ├── 26.18用互斥量保护共享变量的26.17的改正版本 │ │ ├── a.out │ │ ├── error.c │ │ ├── example02.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ └── wrappthread.c │ ├── 26.19Web客户同时连接(可移植的pthread版本) │ │ ├── a.out │ │ ├── error.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web03.c │ │ ├── wrappthread.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 26.2lib 使用线程的str_cli函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── strclithread.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 26.3使用线程的TCP回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcp_listen.c │ │ ├── tcpserv01.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ └── 26.4使用线程且参数传递更具有移植性的TCP回射服务器 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcp_listen.c │ │ ├── tcpserv02.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 28原始套接字 │ ├── 28.10lib init_v6函数 │ │ ├── error.c │ │ ├── init_v6.c │ │ ├── ping.h │ │ └── unp.h │ ├── 28.12lib 处理所有接收的ICMPv6消息 │ │ ├── .DS_Store │ │ ├── error.c │ │ ├── ping.h │ │ ├── proc_v6.c │ │ ├── sock_ntop_host.c │ │ ├── tv_sub.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.13lib SIGALARM信号处理函数 │ │ ├── ping.h │ │ ├── sig_alrm.c │ │ └── unp.h │ ├── 28.14lib 构造并发送一个ICMPv4的回射请求消息 │ │ ├── error.c │ │ ├── in_cksum.c │ │ ├── ping.h │ │ ├── send_v4.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.15lib 计算网际网校验和 │ │ ├── error.c │ │ ├── in_cksum.c │ │ └── unp.h │ ├── 28.16lib 构造并发送一个ICMPv6的回射请求消息 │ │ ├── error.c │ │ ├── ping.h │ │ ├── send_v6.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.17 trace头文件 │ │ └── trace.h │ ├── 28.18 traceroute程序mian函数 │ │ ├── error.c │ │ ├── host_serv.c │ │ ├── icmpcode_v4.c │ │ ├── icmpcode_v6.c │ │ ├── main.c │ │ ├── recv_v4.c │ │ ├── recv_v6.c │ │ ├── sig_alrm.c │ │ ├── signal.c │ │ ├── sock_cmp_addr.c │ │ ├── sock_ntop_host.c │ │ ├── sock_set_port.c │ │ ├── trace.h │ │ ├── traceloop.c │ │ ├── tv_sub.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.19lib traceloop主循环 │ │ ├── error.c │ │ ├── recv_v4.c │ │ ├── recv_v6.c │ │ ├── sig_alrm.c │ │ ├── sock_cmp_addr.c │ │ ├── sock_ntop_host.c │ │ ├── sock_set_port.c │ │ ├── trace.h │ │ ├── traceloop.c │ │ ├── tv_sub.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.20lib 读入并处理ICMPv4消息 │ │ ├── error.c │ │ ├── recv_v4.c │ │ ├── sig_alrm.c │ │ ├── sock_ntop_host.c │ │ ├── trace.h │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 28.23lib sig_alarm函数 │ │ ├── sig_alrm.c │ │ ├── trace.h │ │ └── unp.h │ ├── 28.24lib 读入并处理ICMPv6消息 │ │ ├── error.c │ │ ├── recv_v6.c │ │ ├── sig_alrm.c │ │ ├── sock_ntop_host.c │ │ ├── trace.h │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 28.25lib 对于某个ICMP6不可达代码的描述串 │ │ ├── error.c │ │ ├── icmpcode_v6.c │ │ ├── trace.h │ │ └── unp.h │ ├── 28.29unpicmpd.h头文件 │ │ └── unpicmpd.h │ ├── 28.31应用icmpd服务器的UDP客户端 │ │ ├── dgcli01.c │ │ ├── error.c │ │ ├── icmpd.h │ │ ├── sock_bind_wild.c │ │ ├── sock_ntop.c │ │ ├── udp_client.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── write_fd.c │ ├── 28.33icmpd守护程序的icmpd.h头文件 │ │ └── icmpd.h │ ├── 28.34icmpd守护程序的main函数 │ │ ├── error.c │ │ ├── icmpd.c │ │ ├── icmpd.h │ │ ├── read_fd.c │ │ ├── readable_conn.c │ │ ├── readable_listen.c │ │ ├── readable_v4.c │ │ ├── readable_v6.c │ │ ├── sock_bind_wild.c │ │ ├── sock_get_port.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.36lib 处理客户连接 │ │ ├── error.c │ │ ├── icmpd.h │ │ ├── readable_listen.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.37lib 读入来自客户的数据和可能有的描述符 │ │ ├── error.c │ │ ├── icmpd.h │ │ ├── read_fd.c │ │ ├── readable_conn.c │ │ ├── sock_bind_wild.c │ │ ├── sock_get_port.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.39lib 处理所接收的ICMPv4数据报 │ │ ├── error.c │ │ ├── icmpd.h │ │ ├── readable_v4.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.40lib 处理所接收的ICMPv6数据报 │ │ ├── error.c │ │ ├── icmpd.h │ │ ├── readable_v6.c │ │ ├── sock_ntop_host.c │ │ ├── unp.h │ │ ├── unpicmpd.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.4ping.h头文件 │ │ └── ping.h │ ├── 28.5ping程序的mian函数 │ │ ├── error.c │ │ ├── host_serv.c │ │ ├── in_cksum.c │ │ ├── init_v6.c │ │ ├── main.c │ │ ├── ping.h │ │ ├── proc_v4.c │ │ ├── proc_v6.c │ │ ├── readloop.c │ │ ├── send_v4.c │ │ ├── send_v6.c │ │ ├── sig_alrm.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── tv_sub.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.6lib readloop函数 │ │ ├── error.c │ │ ├── ping.h │ │ ├── readloop.c │ │ ├── sig_alrm.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 28.7lib tv_sub两个时间之差 │ │ ├── tv_sub.c │ │ └── unp.h │ └── 28.8lib 处理所接收的ICMPv4消息 │ │ ├── .DS_Store │ │ ├── error.c │ │ ├── in_cksum.c │ │ ├── ping.h │ │ ├── proc_v4.c │ │ ├── sock_ntop_host.c │ │ ├── tv_sub.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 30客户服务器程序设计范式 │ ├── 30.11lib child_make函数 │ │ ├── child02.c │ │ ├── error.c │ │ ├── readline.c │ │ ├── unp.h │ │ ├── web_child.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.14lib 在共享内存区中分配一个数组的meter函数 │ │ ├── error.c │ │ ├── meter.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 30.16lib 使用posix文件上锁功能的my_lock_init函数 │ │ ├── error.c │ │ ├── lock_fcntl.c │ │ ├── unp.h │ │ └── wrapunix.c │ ├── 30.18lib 在进程之间使用pthread上锁的my_lock_init函数 │ │ ├── error.c │ │ ├── lock_pthread.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wrappthread.c │ │ └── wrapunix.c │ ├── 30.20child结构 │ │ └── child.h │ ├── 30.21lib 描述符传递式预先派生子进程服务器的child_make函数 │ │ ├── child.h │ │ ├── child05.c │ │ ├── error.c │ │ ├── read_fd.c │ │ ├── readline.c │ │ ├── unp.h │ │ ├── web_child.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.24使用描述符传递的main函数 │ │ ├── a.out │ │ ├── child.h │ │ ├── child05.c │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── read_fd.c │ │ ├── readline.c │ │ ├── serv05.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── web_child.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ ├── write_fd.c │ │ └── writen.c │ ├── 30.26创建线程TCP服务器程序的main │ │ ├── a.out │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── readline1.c │ │ ├── serv06.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web_child.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.27pthread.h头文件 │ │ └── pthread07.h │ ├── 30.28预先创建线程TCP服务器程序的main函数 │ │ ├── a.out │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── pthread07.c │ │ ├── pthread07.h │ │ ├── readline1.c │ │ ├── serv07.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web_child.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.29lib thread_make和thread_man函数 │ │ ├── error.c │ │ ├── pthread07.c │ │ ├── pthread07.h │ │ ├── readline1.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web_child.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.30pthread08.h头文件 │ │ └── pthread08.h │ ├── 30.31预先创建线程服务器程序的main函数 │ │ ├── a.out │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── pthread08.c │ │ ├── pthread08.h │ │ ├── readline1.c │ │ ├── serv08.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web_child.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.32lib thread_make和thrad_main函数 │ │ ├── error.c │ │ ├── pthread08.c │ │ ├── pthread08.h │ │ ├── readline1.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── web_child.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.3用于测试各个范式服务器的TCP客户程序 │ │ ├── a.out │ │ ├── client.c │ │ ├── error.c │ │ ├── readn.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 30.4TCP并发服务器程序main函数 │ │ ├── a.out │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── readline.c │ │ ├── serv01.c │ │ ├── sig_chld.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── web_child.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 30.6lib pr_cpu_time函数 现实总cpu时间 │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ └── unp.h │ ├── 30.7lib 处理每个客户请求的web_child函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── unp.h │ │ ├── web_child.c │ │ └── writen.c │ └── 30.9预先派生子进程服务器程序main函数 │ │ ├── a.out │ │ ├── child02.c │ │ ├── error.c │ │ ├── pr_cpu_time.c │ │ ├── readline.c │ │ ├── serv02.c │ │ ├── signal.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── web_child.c │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 3套接字编程简介 │ ├── 3.10确定主机字节序的程序 │ │ ├── a.out │ │ ├── byteorder.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 3.12lib 仅支持IPv4的inet_pton简化版本 │ │ ├── error.c │ │ ├── inet_pton_ipv4.c │ │ └── unp.h │ ├── 3.13lib 仅支持IPv4的inet_ntop简化版本 │ │ ├── error.c │ │ ├── inet_ntop_ipv4.c │ │ └── unp.h │ ├── 3.14lib 我们自己的sock_ntop函数 │ │ ├── error.c │ │ ├── sock_ntop.c │ │ └── unp.h │ ├── 3.15lib readn函数 │ │ ├── error.c │ │ ├── readn.c │ │ └── unp.h │ ├── 3.16lib writen函数 │ │ ├── error.c │ │ ├── unp.h │ │ └── writen.c │ ├── 3.17lib readline函数 │ │ ├── error.c │ │ ├── readline1.c │ │ └── unp.h │ └── 3.18lib readline函数改进版 │ │ ├── error.c │ │ ├── readline.c │ │ └── unp.h │ ├── 4基本TCP套接字编程 │ ├── 4.11显示客户IP地址和端口号的时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimetcpsrv1.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 4.19lib 返回套接字地址族 │ │ ├── error.c │ │ ├── sockfd_to_family.c │ │ └── unp.h │ ├── 5TCP客户q服务器程序示例 │ ├── 15.18头文件sum │ │ └── sum.h │ ├── 15.19lib 发送两个二进制整数给服务器的str_cli │ │ ├── error.c │ │ ├── readline.c │ │ ├── readn.c │ │ ├── str_cli09.c │ │ ├── sum.h │ │ ├── unp.h │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 15.20lib 对两个二进制整数求和的str_echo函数 │ │ ├── error.c │ │ ├── readn.c │ │ ├── str_echo09.c │ │ ├── sum.h │ │ ├── unp.h │ │ └── writen.c │ ├── 5.11lib 调用waitpid函数的sig_chld函数最终正确版本 │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ └── unp.h │ ├── 5.12处理accept返回EINTR错误的TCP服务器最终正确版本 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── tcpserv04.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 5.14lib 调用writen两次的str_cli函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli11.c │ │ ├── unp.h │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 5.17lib 对两个数求和的str_echo函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_echo08.c │ │ ├── unp.h │ │ └── writen.c │ ├── 5.2TCP回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 5.3lib str_echo函数 │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── unp.h │ │ └── writen.c │ ├── 5.4TCP回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 5.5lib str_cli函数 │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── unp.h │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 5.6lib 调用POSIX sigaction函数的signal函数 │ │ ├── error.c │ │ ├── signal.c │ │ └── unp.h │ ├── 5.7lib 调用wait的SIGCHLD信号处理函数 │ │ ├── error.c │ │ ├── sigchldwait.c │ │ └── unp.h │ └── 5.9与服务器建立了5个连接的TCP客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── tcpcli04.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 6IgO复用 select和poll函数 │ ├── 6.13lib 使用select正确处理EOF的str_cli函数 │ │ ├── error.c │ │ ├── strcliselect02.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 6.21使用单进程和select的TCP服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcpservselect01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 6.25使用poll的TCP服务器 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcpservpoll01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ └── 6.9lib 使用select的str_cli函数的实现 │ │ ├── error.c │ │ ├── readline.c │ │ ├── strcliselect01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 7套接字选项 │ └── 7.3套接字选项检查程序的声明 │ │ ├── a.out │ │ ├── checkopts.c │ │ ├── error.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 8基本UDP套接字编程 │ ├── 8.17lib 调用connect的dg_cli函数 │ │ ├── dgcliconnect.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 8.19lib 写固定数目的数据报到服务器的dg_cli函数 │ │ ├── dgcliloop1.c │ │ ├── error.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 8.20lib 对接收到的数据报进行计数的dg_echo函数 │ │ ├── dgecholoop1.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 8.22lib 增大套接字队列大小的dg_echo函数 │ │ ├── dgecholoop2.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 8.23使用connect来确定输出接口的UDP程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── udpcli09.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ └── wrapsock.c │ ├── 8.24使用select处理TCP和UDP的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── udpservselect01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 8.3UDP回射服务器程序 │ │ ├── a.out │ │ ├── dg_echo.c │ │ ├── error.c │ │ ├── udpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 8.4lib dg_echo函数 │ │ ├── dg_echo.c │ │ ├── error.c │ │ ├── unp.h │ │ └── wrapsock.c │ ├── 8.7UDP回射客户程序 │ │ ├── a.out │ │ ├── dg_cli.c │ │ ├── error.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapstdio.c │ ├── 8.8lib dg_cli函数 │ │ ├── dg_cli.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapstdio.c │ └── 8.9lib 验证返回的套接字地址的dg_cli函数版本 │ │ ├── dgcliaddr.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── config.h │ └── 总结 │ ├── 回射客户程序 │ ├── 14.2使用SIGALARM信号在读服务器应答时启动超时的回射客户程序 │ │ ├── a.out │ │ ├── dgclitimeo3.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 14.4使用select在读服务器的应答时启动超时的回射客户程序 │ │ ├── a.out │ │ ├── dgclitimeo1.c │ │ ├── error.c │ │ ├── readable_timeo.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 14.5使用SO_RCVTIMEO套接字选项在读服务器的应答时启动超时的回射客户程序 │ │ ├── a.out │ │ ├── dgclitimeo2.c │ │ ├── error.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 15.4使用unix域字节流协议的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── strcliselect02.c │ │ ├── unixstrcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 15.6使用unix域数据报的回射客户程序 │ │ ├── a.out │ │ ├── dg_cli.c │ │ ├── error.c │ │ ├── unixdgcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapstdio.c │ ├── 16.10使用两个进程fork的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── strclifork.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 16.3使用select的非阻塞IO │ │ ├── a.out │ │ ├── error.c │ │ ├── gf_time.c │ │ ├── strclinonb.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.10使用信号处理函数到主控函数的管道作为IPC(消除竞争)的回射客户程序 │ │ ├── a.out │ │ ├── dgclibcast6.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.7使用pselect阻塞和解阻塞信号(消除竞争)的回射客户程序 │ │ ├── a.out │ │ ├── dgclibcast4.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 20.9从信号处理函数中使用sigsetjmp siglongjmp(消除竞争)的回射客户程序 │ │ ├── a.out │ │ ├── dgclibcast5.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop_host.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 22.6使用超时,重传和序列号实现可靠性的回射客户程序 │ │ ├── a.out │ │ ├── dg_cli.c │ │ ├── dg_send_recv.c │ │ ├── error.c │ │ ├── rtt.c │ │ ├── signal.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── unprtt.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 24.14使用带外数据对服务器心搏测试的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── heartbeatcli.c │ │ ├── signal.c │ │ ├── strcliselect02.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 26.2使用2个线程的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── strclithread.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 26.4使用线程且参数传递更具有移植性的TCP回射服务器 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcp_listen.c │ │ ├── tcpserv02.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 5.4TCP回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── readline.c │ │ ├── str_cli.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── writen.c │ ├── 6.13使用select正确处理EOF的回射客户程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── strcliselect02.c │ │ ├── tcpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 8.17调用connect获取异步错误回射客户程序 │ │ ├── a.out │ │ ├── dgcliconnect.c │ │ ├── error.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 8.7UDP回射客户程序 │ │ ├── a.out │ │ ├── dg_cli.c │ │ ├── error.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ └── wrapstdio.c │ └── 8.9验证服务器地址的UDP回射客户程序 │ │ ├── a.out │ │ ├── dgcliaddr.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── udpcli01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 回射服务器程序 │ ├── 14.14l重写改用标准I_O的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ └── unp.h │ ├── 14.14l重写改用标准IhO的回射服务器程序 │ │ └── wrapstdio.c │ ├── 14.14l重写改用标准IrO的回射服务器程序 │ │ └── str_echo_stdio02.c │ ├── 14.14l重写改用标准IuO的回射服务器程序 │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 14.14l重写改用标准IxO的回射服务器程序 │ │ └── tcpserv01.c │ ├── 15.3 5-12使用unix域字节流协议的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── unixstrserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 15.5 8-3使用unix域数据报协议的回射服务器程序 │ │ ├── a.out │ │ ├── dg_echo.c │ │ ├── error.c │ │ ├── unixdgserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 22.15捆绑所有地址的UDP服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── get_ifi_info.c │ │ ├── get_rtaddrs.c │ │ ├── net_rt_iflist.c │ │ ├── sock_ntop.c │ │ ├── udpserv03.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 22.4接收目的地址和收取接口信息(截取数据报) │ │ ├── a.out │ │ ├── dgechoaddr.c │ │ ├── error.c │ │ ├── get_rtaddrs.c │ │ ├── if_indextoname.c │ │ ├── net_rt_iflist.c │ │ ├── recvfromflags.c │ │ ├── sock_ntop.c │ │ ├── udpserv01.c │ │ ├── unp.h │ │ ├── unpifi.h │ │ ├── unproute.h │ │ ├── wraplib.c │ │ └── wrapsock.c │ ├── 25.4使用信号驱动的IO的回射服务器程序 │ │ ├── a.out │ │ ├── dgecho01.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── udpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 26.4使用线程且参数传递更具有移植性的TCP回射服务器 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcp_listen.c │ │ ├── tcpserv02.c │ │ ├── unp.h │ │ ├── unpthread.h │ │ ├── wraplib.c │ │ ├── wrappthread.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 5.12正确处理子进程终止的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── tcpserv04.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 5.2TCP回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── str_echo.c │ │ ├── tcpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 6.21使用单进程和select的TCP服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcpservselect01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 6.25使用poll的TCP服务器 │ │ ├── a.out │ │ ├── error.c │ │ ├── tcpservpoll01.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapunix.c │ │ └── writen.c │ ├── 8.24使用select处理TCP和UDP的回射服务器程序 │ │ ├── a.out │ │ ├── error.c │ │ ├── sigchldwaitpid.c │ │ ├── signal.c │ │ ├── str_echo.c │ │ ├── udpservselect01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ ├── wrapunix.c │ │ └── writen.c │ └── 8.3UDP回射服务器程序 │ │ ├── a.out │ │ ├── dg_echo.c │ │ ├── error.c │ │ ├── udpserv01.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 时间获取客户程序 │ ├── 1.5TCP时间获取客户程序 │ │ ├── a.out │ │ ├── daytimetcpcli.c │ │ ├── error.c │ │ └── unp.h │ ├── 1.6适合于IPv6的图1.5所示程序的修改版 │ │ ├── a.out │ │ ├── daytimetcpcliv6.c │ │ ├── error.c │ │ └── unp.h │ ├── 11.11用tcp_connect重新编写的时间获取客户程序 │ │ ├── a.out │ │ ├── daytimetcpcli.c │ │ ├── error.c │ │ ├── sock_ntop_host.c │ │ ├── tcp_connect.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 11.16使用udp_client的UDP时间获取客户程序 │ │ ├── a.out │ │ ├── daytimeudpcli1.c │ │ ├── error.c │ │ ├── sock_ntop_host.c │ │ ├── udp_client.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ └── 16.11发起一个非阻塞connect的获取事件客户程序 │ │ ├── a.out │ │ ├── connect_nonb.c │ │ ├── daytimetcpcli.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 时间获取服务器程序 │ ├── 1.9TCP时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimetcpsrv.c │ │ ├── error.c │ │ ├── unp.h │ │ ├── wraplib.c │ │ ├── wrapsock.c │ │ ├── wrapstdio.c │ │ └── wrapunix.c │ ├── 11.14使用tcp_listen的协议无关时间获取服务器程序(最终) │ │ ├── a.out │ │ ├── daytimetcpsrv2.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 11.19协议无关的udp时间获取服务器程序 │ │ ├── a.out │ │ ├── daytimeudpsrv2.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── udp_server.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ ├── 13.12可由inetd启动的协议无关时间获取服务器程序 │ │ ├── a.out │ │ ├── daemon_inetd.c │ │ ├── daytimetcpsrv3.c │ │ ├── error.c │ │ ├── sock_ntop.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ └── 13.5作为守护进程运行的协议无关时间获取服务器程序 │ │ ├── a.out │ │ ├── daemon_init.c │ │ ├── daytimetcpsrv2.c │ │ ├── error.c │ │ ├── signal.c │ │ ├── sock_ntop.c │ │ ├── tcp_listen.c │ │ ├── unp.h │ │ ├── wrapsock.c │ │ └── wrapunix.c │ └── 服务器程序设计范式 │ ├── 1.用于测试各个范式服务器的TCP客户程序 │ ├── a.out │ ├── client.c │ ├── error.c │ ├── readn.c │ ├── tcp_connect.c │ ├── unp.h │ ├── unpthread.h │ ├── wraplib.c │ ├── wrappthread.c │ ├── wrapsock.c │ ├── wrapstdio.c │ └── wrapunix.c │ ├── 2.每个客户一个子进程 │ ├── a.out │ ├── error.c │ ├── pr_cpu_time.c │ ├── readline.c │ ├── serv01.c │ ├── sig_chld.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── web_child.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ ├── 3.预先派生子进程(accept无上锁保护)(带进程分布) │ ├── a.out │ ├── child02.c │ ├── error.c │ ├── meter.c │ ├── pr_cpu_time.c │ ├── readline.c │ ├── serv02.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── web_child.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ ├── 4.预先派生子进程accept使用文件上锁保护 │ ├── a.out │ ├── child02.c │ ├── error.c │ ├── lock_fcntl.c │ ├── pr_cpu_time.c │ ├── readline.c │ ├── serv02.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── web_child.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ ├── 5.预先派生子进程使用线程上锁保护 │ ├── a.out │ ├── child02.c │ ├── error.c │ ├── lock_pthread.c │ ├── pr_cpu_time.c │ ├── readline.c │ ├── serv02.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── unpthread.h │ ├── web_child.c │ ├── wrappthread.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ ├── 6.预先派生子进程传递文件描述符 │ ├── a.out │ ├── child.h │ ├── child05.c │ ├── error.c │ ├── pr_cpu_time.c │ ├── read_fd.c │ ├── readline.c │ ├── serv05.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── web_child.c │ ├── wrapsock.c │ ├── wrapunix.c │ ├── write_fd.c │ └── writen.c │ ├── 7.每个客户一个线程 │ ├── a.out │ ├── error.c │ ├── pr_cpu_time.c │ ├── readline1.c │ ├── serv06.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── unpthread.h │ ├── web_child.c │ ├── wrappthread.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ ├── 8.预先创建线程-每个线程各自accept │ ├── a.out │ ├── error.c │ ├── pr_cpu_time.c │ ├── pthread07.c │ ├── pthread07.h │ ├── readline1.c │ ├── serv07.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── unpthread.h │ ├── web_child.c │ ├── wrappthread.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c │ └── 9.预先创建线程主线程统一accept │ ├── a.out │ ├── error.c │ ├── pr_cpu_time.c │ ├── pthread08.c │ ├── pthread08.h │ ├── readline1.c │ ├── serv08.c │ ├── signal.c │ ├── tcp_listen.c │ ├── unp.h │ ├── unpthread.h │ ├── web_child.c │ ├── wrappthread.c │ ├── wrapsock.c │ ├── wrapunix.c │ └── writen.c ├── UNIX网络编程卷2 ├── UNIX进程间通信 │ ├── ._10.Posix信号量 │ ├── ._11.System V信号量 │ ├── ._14.System V共享内存区 │ ├── ._2.Posix IPC │ ├── ._4.管道和FIFO │ ├── ._5.Poxis消息队列 │ ├── ._6.System V消息队列 │ ├── ._7.互斥锁与条件变量 │ ├── ._8.读写锁 │ ├── ._9.记录上锁(文件锁) │ ├── ._config.h │ ├── 10.Posix信号量 │ │ ├── ._10.10删除一个有名信号量的名字 │ │ ├── ._10.11取得并输出一个信号量的值 │ │ ├── ._10.12等待一个信号量,并输出他的值 │ │ ├── ._10.13挂出一个信号量的值 │ │ ├── ._10.17生产者消费者问题信号量解决方案main函数 │ │ ├── ._10.19lib 使用Posix有名信号量的文件上锁 │ │ ├── ._10.20使用基于内存信号量的生产者-消费者程序 │ │ ├── ._10.21创建多个生产者线程的main函数 │ │ ├── ._10.24创建多个生产者和多个消费者的main函数 │ │ ├── ._10.33双缓冲区生产者消费者模型 │ │ ├── ._10.36semaphore.h头文件 │ │ ├── ._10.37lib sem_open函数 │ │ ├── ._10.38lib sem_close函数 │ │ ├── ._10.39lib sem_link函数 │ │ ├── ._10.40lib sem_post函数 │ │ ├── ._10.41lib sem_wait函数 │ │ ├── ._10.42semaphore.h头文件 │ │ ├── ._10.43lib sem_open函数 │ │ ├── ._10.45lib sem_close函数 │ │ ├── ._10.46lib sem_unlink函数 │ │ ├── ._10.47lib sem_post函数 │ │ ├── ._10.48lib sem_wait函数 │ │ ├── ._10.49lib sem_trywait函数 │ │ ├── ._10.50lib sem_getvalue函数 │ │ ├── ._10.9创建一个又名信号量 │ │ ├── 10.10删除一个有名信号量的名字 │ │ │ ├── ._error.c │ │ │ ├── ._semunlink.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semunlink.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.11取得并输出一个信号量的值 │ │ │ ├── ._error.c │ │ │ ├── ._semgetvalue.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semgetvalue.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.12等待一个信号量,并输出他的值 │ │ │ ├── ._error.c │ │ │ ├── ._semwait.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semwait.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.13挂出一个信号量的值 │ │ │ ├── ._error.c │ │ │ ├── ._sempost.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sempost.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.17生产者消费者问题信号量解决方案main函数 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons1.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons1.c │ │ │ ├── px_ipc_name.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 10.19lib 使用Posix有名信号量的文件上锁 │ │ │ ├── ._error.c │ │ │ ├── ._lockpxsem.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lockpxsem.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.20使用基于内存信号量的生产者-消费者程序 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons2.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons2.c │ │ │ ├── px_ipc_name.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 10.21创建多个生产者线程的main函数 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons3.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons3.c │ │ │ ├── px_ipc_name.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 10.24创建多个生产者和多个消费者的main函数 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons4.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons4.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 10.33双缓冲区生产者消费者模型 │ │ │ ├── ._error.c │ │ │ ├── ._mycat2.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mycat2.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 10.36semaphore.h头文件 │ │ │ ├── ._semaphore.h │ │ │ └── semaphore.h │ │ ├── 10.37lib sem_open函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_open.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_open.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.38lib sem_close函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_close.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_close.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.39lib sem_link函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_unlink.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_unlink.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.40lib sem_post函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_post.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_post.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.41lib sem_wait函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_wait.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_wait.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.42semaphore.h头文件 │ │ │ ├── ._semaphore.h │ │ │ └── semaphore.h │ │ ├── 10.43lib sem_open函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_open.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_open.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.45lib sem_close函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_close.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_close.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.46lib sem_unlink函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_unlink.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_unlink.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.47lib sem_post函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_post.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_post.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.48lib sem_wait函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_wait.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_wait.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.49lib sem_trywait函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_trywait.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_trywait.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.50lib sem_getvalue函数 │ │ │ ├── ._error.c │ │ │ ├── ._sem_getvalue.c │ │ │ ├── ._semaphore.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sem_getvalue.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.51lib semapore.h头文件 │ │ │ ├── ._semaphore.h │ │ │ └── semaphore.h │ │ ├── 10.52lib sem_open函数 │ │ │ ├── ._sem_open.c │ │ │ ├── error.c │ │ │ ├── sem_open.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.54lib sem_close函数 │ │ │ ├── ._sem_close.c │ │ │ ├── error.c │ │ │ ├── sem_close.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.55lib sem_unlink函数 │ │ │ ├── ._sem_unlink.c │ │ │ ├── error.c │ │ │ ├── sem_unlink.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.56lib sem_post函数 │ │ │ ├── ._sem_post.c │ │ │ ├── error.c │ │ │ ├── sem_post.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.57lib sem_wait函数 │ │ │ ├── ._sem_wait.c │ │ │ ├── error.c │ │ │ ├── sem_wait.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.58lib sem_trywait函数 │ │ │ ├── ._sem_trywait.c │ │ │ ├── error.c │ │ │ ├── sem_trywait.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 10.59lib sem_getvalue函数 │ │ │ ├── ._sem_getvalue.c │ │ │ ├── error.c │ │ │ ├── sem_getvalue.c │ │ │ ├── semaphore.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 10.9创建一个又名信号量 │ │ │ ├── ._error.c │ │ │ ├── ._semcreate.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semcreate.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 11.System V信号量 │ │ ├── ._11.2semcreate程序 │ │ ├── ._11.3semrmid函数 │ │ ├── ._11.4semsetvalues函数 │ │ ├── ._11.5semgetvalues函数 │ │ ├── ._11.6semops程序 │ │ ├── ._11.7lib 使用System V信号量实现文件上锁 │ │ ├── ._11.9确定System V信号量上的系统限制值 │ │ ├── 11.2semcreate程序 │ │ │ ├── ._error.c │ │ │ ├── ._semcreate.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semcreate.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 11.3semrmid函数 │ │ │ ├── ._error.c │ │ │ ├── ._semrmid.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semrmid.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 11.4semsetvalues函数 │ │ │ ├── ._error.c │ │ │ ├── ._semsetvalues.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semsetvalues.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 11.5semgetvalues函数 │ │ │ ├── ._error.c │ │ │ ├── ._semgetvalues.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semgetvalues.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 11.6semops程序 │ │ │ ├── ._error.c │ │ │ ├── ._semops.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── semops.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 11.7lib 使用System V信号量实现文件上锁 │ │ │ ├── ._error.c │ │ │ ├── ._locksvsem.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── locksvsem.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 11.9确定System V信号量上的系统限制值 │ │ │ ├── ._error.c │ │ │ ├── ._limits.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── limits.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 12.共享内存区介绍 │ │ ├── ._12.10父子进程给共享内存区中的一个计数器+1 │ │ ├── ._12.12计数器和信号量都在共享内存区中 │ │ ├── ._12.14 4.4BSD匿名内存映射 │ │ ├── ._12.15 SVR4 zero设备的内存映射 │ │ ├── ._12.16访问其大小可能不同于文件大小的内存映射去 │ │ ├── ._12.19允许文件大小增长的内存区映射例子 │ │ ├── ._12.3父子进程都给同一个全局变量+1 │ │ ├── 12.10父子进程给共享内存区中的一个计数器+1 │ │ │ ├── ._error.c │ │ │ ├── ._incr2.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── incr2.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 12.12计数器和信号量都在共享内存区中 │ │ │ ├── ._error.c │ │ │ ├── ._incr3.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── incr3.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 12.14 4.4BSD匿名内存映射 │ │ │ ├── ._error.c │ │ │ ├── ._incr_map_anon.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── incr_map_anon.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 12.15 SVR4 zero设备的内存映射 │ │ │ ├── ._error.c │ │ │ ├── ._incr_dev_zero.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── incr_dev_zero.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 12.16访问其大小可能不同于文件大小的内存映射去 │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._test1.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── test1.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 12.19允许文件大小增长的内存区映射例子 │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._test2.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── test2.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 12.3父子进程都给同一个全局变量+1 │ │ │ ├── ._error.c │ │ │ ├── ._incr1.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── incr1.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 13.Posix共享内存区 │ │ ├── ._13.10定义共享内存区布局的头文件 │ │ ├── ._13.11从共享内存区中取得并输出消息的服务器程序 │ │ ├── ._13.12在共享内存区中给服务器存放消息的客户程序 │ │ ├── ._13.2创建一个具有指定大小的Posix共享内存区对象 │ │ ├── ._13.3删除一个共享内存区对象的名字 │ │ ├── ._13.4打开一个共享内存区对象 填写一个数据模式 │ │ ├── ._13.5打开一个共享内存区对象 验证其数据模式 │ │ ├── ._13.6共享内存区在不同进程中可以出现不同的地址 │ │ ├── ._13.7创建和初始化共享内存区和信号量的程序 │ │ ├── ._13.8给存放在共享内存区中的一个计数器加1的程序 │ │ ├── 13.10定义共享内存区布局的头文件 │ │ │ ├── ._cliserv2.h │ │ │ └── cliserv2.h │ │ ├── 13.11从共享内存区中取得并输出消息的服务器程序 │ │ │ ├── ._cliserv2.h │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._server2.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── cliserv2.h │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── server2.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.12在共享内存区中给服务器存放消息的客户程序 │ │ │ ├── ._client2.c │ │ │ ├── ._cliserv2.h │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._sleep_us.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── client2.c │ │ │ ├── cliserv2.h │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── sleep_us.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.2创建一个具有指定大小的Posix共享内存区对象 │ │ │ ├── ._error.c │ │ │ ├── ._shmcreate.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmcreate.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.3删除一个共享内存区对象的名字 │ │ │ ├── ._error.c │ │ │ ├── ._shmunlink.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmunlink.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.4打开一个共享内存区对象 填写一个数据模式 │ │ │ ├── ._error.c │ │ │ ├── ._shmwrite.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmwrite.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.5打开一个共享内存区对象 验证其数据模式 │ │ │ ├── ._error.c │ │ │ ├── ._shmread.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmread.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.6共享内存区在不同进程中可以出现不同的地址 │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._test3.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── test3.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 13.7创建和初始化共享内存区和信号量的程序 │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._server1.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── server1.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 13.8给存放在共享内存区中的一个计数器加1的程序 │ │ │ ├── ._client1.c │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── client1.c │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 14.System V共享内存区 │ │ ├── ._14.1创建一个指定大小的System V共享内存区 │ │ ├── ._14.2删除一个System V共享内存区 │ │ ├── ._14.3打开共享内存区,填入一个数据模式 │ │ ├── ._14.4打开一个共享内存区,验证其数据模式 │ │ ├── ._14.6确定共享内存区的限制 │ │ ├── 14.1创建一个指定大小的System V共享内存区 │ │ │ ├── ._error.c │ │ │ ├── ._shmget.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmget.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 14.2删除一个System V共享内存区 │ │ │ ├── ._error.c │ │ │ ├── ._shmrmid.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmrmid.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 14.3打开共享内存区,填入一个数据模式 │ │ │ ├── ._error.c │ │ │ ├── ._shmwrite.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmwrite.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 14.4打开一个共享内存区,验证其数据模式 │ │ │ ├── ._error.c │ │ │ ├── ._shmread.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── shmread.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 14.6确定共享内存区的限制 │ │ │ ├── ._error.c │ │ │ ├── ._limits.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── limits.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 2.Posix IPC │ │ ├── ._2.2lib 我们的px_ipc_name函数 │ │ └── 2.2lib 我们的px_ipc_name函数 │ │ │ ├── ._error.c │ │ │ ├── ._px_ipc_name.c │ │ │ ├── ._unpipc.h │ │ │ ├── error.c │ │ │ ├── px_ipc_name.c │ │ │ └── unpipc.h │ ├── 4.管道和FIFO │ │ ├── ._4.10lib 使用两个管道的客户-服务器程序server函数 │ │ ├── ._4.14测试全双工管道的双向通信能力 │ │ ├── ._4.15使用popen的客户-服务器程序 │ │ ├── ._4.16使用两个FIFO的客户-服务器程序main函数 │ │ ├── ._4.18独立服务器程序main函数 │ │ ├── ._4.19fifo.h头文件 │ │ ├── ._4.20独立客户程序main函数 │ │ ├── ._4.23处理多个客户请求的FIFO服务器程序 │ │ ├── ._4.24与4.23的服务器程序协同工作的客户程序 │ │ ├── ._4.25我们的mymesg结构及相关定义 │ │ ├── ._4.27lib mesg_send函数 │ │ ├── ._4.28lib mesg_recv函数 │ │ ├── ._4.29lib 我们的使用消息的client函数 │ │ ├── ._4.30lib 我们的使用消息的server函数 │ │ ├── ._4.31在运行时确定PIPE_BUF和OPEN_MAX的值 │ │ ├── ._4.8使用两个管道的客户-服务器程序main函数 │ │ ├── ._4.9lib 使用两个管道的客户-服务器程序client函数 │ │ ├── 4.10lib 使用两个管道的客户-服务器程序server函数 │ │ │ ├── ._error.c │ │ │ ├── ._server.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── server.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.14测试全双工管道的双向通信能力 │ │ │ ├── ._error.c │ │ │ ├── ._fduplex.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── fduplex.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.15使用popen的客户-服务器程序 │ │ │ ├── ._error.c │ │ │ ├── ._mainpopen.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mainpopen.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.16使用两个FIFO的客户-服务器程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._mainfifo.c │ │ │ ├── ._server.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── mainfifo.c │ │ │ ├── server.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.18独立服务器程序main函数 │ │ │ ├── ._error.c │ │ │ ├── ._fifo.h │ │ │ ├── ._server.c │ │ │ ├── ._server_main.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── fifo.h │ │ │ ├── server.c │ │ │ ├── server_main.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.19fifo.h头文件 │ │ │ ├── ._fifo.h │ │ │ └── fifo.h │ │ ├── 4.20独立客户程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._client_main.c │ │ │ ├── ._error.c │ │ │ ├── ._fifo.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── client_main.c │ │ │ ├── error.c │ │ │ ├── fifo.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.23处理多个客户请求的FIFO服务器程序 │ │ │ ├── ._error.c │ │ │ ├── ._fifo.h │ │ │ ├── ._mainserver.c │ │ │ ├── ._readline.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── fifo.h │ │ │ ├── mainserver.c │ │ │ ├── readline.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.24与4.23的服务器程序协同工作的客户程序 │ │ │ ├── ._error.c │ │ │ ├── ._fifo.h │ │ │ ├── ._mainclient.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── fifo.h │ │ │ ├── mainclient.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.25我们的mymesg结构及相关定义 │ │ │ ├── ._mesg.h │ │ │ └── mesg.h │ │ ├── 4.27lib mesg_send函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_send.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_send.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.28lib mesg_recv函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.29lib 我们的使用消息的client函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.30lib 我们的使用消息的server函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 4.31在运行时确定PIPE_BUF和OPEN_MAX的值 │ │ │ ├── ._error.c │ │ │ ├── ._pipeconf.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pipeconf.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 4.8使用两个管道的客户-服务器程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._mainpipe.c │ │ │ ├── ._server.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── mainpipe.c │ │ │ ├── server.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ └── 4.9lib 使用两个管道的客户-服务器程序client函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ ├── 5.Poxis消息队列 │ │ ├── ._5.11信号处理程序只给主线程设置一个标志(不正确版本) │ │ ├── ._5.12使用信号通知读Posix消息队列 │ │ ├── ._5.13伴随sigwait使用mq_notify │ │ ├── ._5.14伴随管道使用信号通知 │ │ ├── ._5.15启动一个新现成的mq_notify │ │ ├── ._5.17演示实时信号的简单测试程序 │ │ ├── ._5.18提供实时行为的signal_rt函数 │ │ ├── ._5.20mqueue.h头文件 │ │ ├── ._5.21lib mq_open函数 │ │ ├── ._5.24lib mq_close函数 │ │ ├── ._5.25lib mq_unlink函数 │ │ ├── ._5.26lib mq_getattr函数 │ │ ├── ._5.27lib mq_setattr函数 │ │ ├── ._5.28lib mq_notify函数 │ │ ├── ._5.29lib mq_send函数 │ │ ├── ._5.2指定排他性创建标志,创建消息队列 │ │ ├── ._5.30lib mq_receive函数 │ │ ├── ._5.3mqunlink一个消息队列 │ │ ├── ._5.4取得并输出某个消息队列的属性 │ │ ├── ._5.5改进后的5.2 允许指定属性mqcreate │ │ ├── ._5.6mqsend程序 │ │ ├── ._5.7mqreceive程序 │ │ ├── ._5.8调用sysconf获取消息队列的限制 │ │ ├── ._5.9当有消息放置到某个空队列中时产生SIGUSR1(不正确版本) │ │ ├── 5.11信号处理程序只给主线程设置一个标志(不正确版本) │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifysig2.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifysig2.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.12使用信号通知读Posix消息队列 │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifysig3.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifysig3.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.13伴随sigwait使用mq_notify │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifysig4.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifysig4.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.14伴随管道使用信号通知 │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifysig5.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifysig5.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.15启动一个新现成的mq_notify │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifythread1.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifythread1.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.17演示实时信号的简单测试程序 │ │ │ ├── ._error.c │ │ │ ├── ._signal_rt.c │ │ │ ├── ._test1.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── signal_rt.c │ │ │ ├── test1.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.18提供实时行为的signal_rt函数 │ │ │ ├── ._error.c │ │ │ ├── ._signal_rt.c │ │ │ ├── ._unpipc.h │ │ │ ├── error.c │ │ │ ├── signal_rt.c │ │ │ └── unpipc.h │ │ ├── 5.20mqueue.h头文件 │ │ │ ├── ._mqueue.h │ │ │ └── mqueue.h │ │ ├── 5.21lib mq_open函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_open.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_open.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.24lib mq_close函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_close.c │ │ │ ├── ._mq_notify.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_close.c │ │ │ ├── mq_notify.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.25lib mq_unlink函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_unlink.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_unlink.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.26lib mq_getattr函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_getattr.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_getattr.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.27lib mq_setattr函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_setattr.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_setattr.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.28lib mq_notify函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_notify.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_notify.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.29lib mq_send函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_send.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_send.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.2指定排他性创建标志,创建消息队列 │ │ │ ├── ._error.c │ │ │ ├── ._mqcreate1.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqcreate1.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 5.30lib mq_receive函数 │ │ │ ├── ._error.c │ │ │ ├── ._mq_receive.c │ │ │ ├── ._mqueue.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mq_receive.c │ │ │ ├── mqueue.h │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.3mqunlink一个消息队列 │ │ │ ├── ._error.c │ │ │ ├── ._mqunlink.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqunlink.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.4取得并输出某个消息队列的属性 │ │ │ ├── ._error.c │ │ │ ├── ._mqgetattr.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqgetattr.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.5改进后的5.2 允许指定属性mqcreate │ │ │ ├── ._error.c │ │ │ ├── ._mqcreate.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqcreate.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.6mqsend程序 │ │ │ ├── ._error.c │ │ │ ├── ._mqsend.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqsend.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.7mqreceive程序 │ │ │ ├── ._error.c │ │ │ ├── ._mqreceive.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqreceive.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 5.8调用sysconf获取消息队列的限制 │ │ │ ├── ._error.c │ │ │ ├── ._mqsysconf.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqsysconf.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 5.9当有消息放置到某个空队列中时产生SIGUSR1(不正确版本) │ │ │ ├── ._error.c │ │ │ ├── ._mqnotifysig1.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mqnotifysig1.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ ├── 6.System V消息队列 │ │ ├── ._6.10使用消息队列的服务器程序main函数 │ │ ├── ._6.11使用消息队列的客户程序main函数 │ │ ├── ._6.12lib 用于消息队列的mesg_send函数 │ │ ├── ._6.13lib 用于消息队列的mesg_recv函数 │ │ ├── ._6.15服务器程序main函数 │ │ ├── ._6.16lib server函数 │ │ ├── ._6.17客户程序main函数 │ │ ├── ._6.18lib client函数 │ │ ├── ._6.20客户程序main函数 │ │ ├── ._6.21lib client函数 │ │ ├── ._6.22lib 调用waitpid的SIGCHLD信号处理程序 │ │ ├── ._6.23lib server函数 │ │ ├── ._6.24lib 处理被中断的系统调用的Mesg_recv包裹函数 │ │ ├── ._6.24lib~22lib的server_main函数 │ │ ├── ._6.25确定System V消息队列上的系统限制 │ │ ├── ._6.3使用msgctl命令的例子 │ │ ├── ._6.4创建一个System V消息队列 │ │ ├── ._6.5往一个System V消息队列中加一个消息 │ │ ├── ._6.6从一个System V消息队列中读出一个消息 │ │ ├── ._6.7删除一个System V消息队列 │ │ ├── ._6.8只知道标识符时从一个System V消息队列中读 │ │ ├── ._6.9lib 使用消息队列的客户-服务器程序头文件 │ │ ├── 6.10使用消息队列的服务器程序main函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._server_main.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── server_main.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.11使用消息队列的客户程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._client_main.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── client_main.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.12lib 用于消息队列的mesg_send函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_send.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_send.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.13lib 用于消息队列的mesg_recv函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.15服务器程序main函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._server_main.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── server_main.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.16lib server函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.17客户程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._client_main.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── client_main.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.18lib client函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.20客户程序main函数 │ │ │ ├── ._client.c │ │ │ ├── ._client_main.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── client_main.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.21lib client函数 │ │ │ ├── ._client.c │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── client.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.22lib 调用waitpid的SIGCHLD信号处理程序 │ │ │ ├── ._error.c │ │ │ ├── ._sigchldwaitpid.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── sigchldwaitpid.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.23lib server函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._sigchldwaitpid.c │ │ │ ├── ._signal.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── sigchldwaitpid.c │ │ │ ├── signal.c │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.24lib 处理被中断的系统调用的Mesg_recv包裹函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.24lib~22lib的server_main函数 │ │ │ ├── ._error.c │ │ │ ├── ._mesg.h │ │ │ ├── ._mesg_recv.c │ │ │ ├── ._mesg_send.c │ │ │ ├── ._server.c │ │ │ ├── ._server_main.c │ │ │ ├── ._sigchldwaitpid.c │ │ │ ├── ._signal.c │ │ │ ├── ._svmsg.h │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapstdio.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── mesg.h │ │ │ ├── mesg_recv.c │ │ │ ├── mesg_send.c │ │ │ ├── server.c │ │ │ ├── server_main.c │ │ │ ├── sigchldwaitpid.c │ │ │ ├── signal.c │ │ │ ├── svmsg.h │ │ │ ├── unpipc.h │ │ │ ├── wrapstdio.c │ │ │ └── wrapunix.c │ │ ├── 6.25确定System V消息队列上的系统限制 │ │ │ ├── ._error.c │ │ │ ├── ._limits.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── limits.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.3使用msgctl命令的例子 │ │ │ ├── ._ctl.c │ │ │ ├── ._error.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── ctl.c │ │ │ ├── error.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.4创建一个System V消息队列 │ │ │ ├── ._error.c │ │ │ ├── ._msgcreate.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── msgcreate.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.5往一个System V消息队列中加一个消息 │ │ │ ├── ._error.c │ │ │ ├── ._msgsnd.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── msgsnd.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.6从一个System V消息队列中读出一个消息 │ │ │ ├── ._error.c │ │ │ ├── ._msgrcv.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── msgrcv.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.7删除一个System V消息队列 │ │ │ ├── ._error.c │ │ │ ├── ._msgrmid.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── msgrmid.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 6.8只知道标识符时从一个System V消息队列中读 │ │ │ ├── ._error.c │ │ │ ├── ._msgrcvid.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── msgrcvid.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 6.9lib 使用消息队列的客户-服务器程序头文件 │ │ │ ├── ._svmsg.h │ │ │ └── svmsg.h │ ├── 7.互斥锁与条件变量 │ │ ├── ._7.2生产者-消费者main函数 │ │ ├── ._7.4启动生产者后立即启动消费者 │ │ ├── ._7.6使用条件变量的生产者-消费者程序 │ │ ├── 7.2生产者-消费者main函数 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons2.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons2.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 7.4启动生产者后立即启动消费者 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons3.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons3.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ └── 7.6使用条件变量的生产者-消费者程序 │ │ │ ├── ._error.c │ │ │ ├── ._prodcons6.c │ │ │ ├── ._set_concurrency.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── prodcons6.c │ │ │ ├── set_concurrency.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ ├── 8.读写锁 │ │ ├── ._8.10展示线程取消的测试程序 │ │ ├── ._8.11lib rwlock_cancelrdwait函数 │ │ ├── ._8.12lib rwlock_cancelwrwait函数 │ │ ├── ._8.1pthread_rwlock_t数据类型定义 │ │ ├── ._8.2lib pthread_rwlock_init函数 │ │ ├── ._8.3lib pthread_rwlock_destory函数 │ │ ├── ._8.4lib pthread_rwlock_rdlock函数 │ │ ├── ._8.5lib pthread_rwlock_tryrdlock函数 │ │ ├── ._8.6lib pthread_rwlock_wlock │ │ ├── ._8.7lib pthread_rwlock_trywrlock │ │ ├── ._8.8lib pthread_relock_unlock函数 │ │ ├── 8.10展示线程取消的测试程序 │ │ │ ├── ._testcancel.c │ │ │ └── testcancel.c │ │ ├── 8.11lib rwlock_cancelrdwait函数 │ │ │ ├── ._pthread_rwlock_rdlock.c │ │ │ └── pthread_rwlock_rdlock.c │ │ ├── 8.12lib rwlock_cancelwrwait函数 │ │ │ ├── ._pthread_rwlock_wrlock.c │ │ │ └── pthread_rwlock_wrlock.c │ │ ├── 8.1pthread_rwlock_t数据类型定义 │ │ │ ├── ._pthread_rwlock.h │ │ │ └── pthread_rwlock.h │ │ ├── 8.2lib pthread_rwlock_init函数 │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_init.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_init.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 8.3lib pthread_rwlock_destory函数 │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_destroy.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_destroy.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 8.4lib pthread_rwlock_rdlock函数 │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_rdlock.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_rdlock.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 8.5lib pthread_rwlock_tryrdlock函数 │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_tryrdlock.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_tryrdlock.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 8.6lib pthread_rwlock_wlock │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_wrlock.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_wrlock.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ ├── 8.7lib pthread_rwlock_trywrlock │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_trywrlock.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_trywrlock.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ │ └── 8.8lib pthread_relock_unlock函数 │ │ │ ├── ._error.c │ │ │ ├── ._pthread_rwlock.h │ │ │ ├── ._pthread_rwlock_unlock.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrappthread.c │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── pthread_rwlock.h │ │ │ ├── pthread_rwlock_unlock.c │ │ │ ├── unpipc.h │ │ │ ├── wrappthread.c │ │ │ └── wrapunix.c │ ├── 9.记录上锁(文件锁) │ │ ├── ._9.11确保某个程序只有一个副本在运行 │ │ ├── ._9.12lib 使用指定O_CREAT和O_EXCL标志到俄 open实现锁的函数 │ │ ├── ._9.1lib 不上锁的函数 │ │ ├── ._9.2文件上锁例子的main函数 │ │ ├── ._9.3lib Posix fcntl上锁 │ │ ├── ._9.4lib 调用fcntl获取或释放一格锁 │ │ ├── ._9.5lib 调用fcntl测试一个锁 │ │ ├── ._9.8确定在有一格写入锁待处理期间是否允许有另一个读出锁 │ │ ├── ._9.9测试写入者是否比读出者优先 │ │ ├── 9.11确保某个程序只有一个副本在运行 │ │ │ ├── ._error.c │ │ │ ├── ._lock_reg.c │ │ │ ├── ._onedaemon.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lock_reg.c │ │ │ ├── onedaemon.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.12lib 使用指定O_CREAT和O_EXCL标志到俄 open实现锁的函数 │ │ │ ├── ._error.c │ │ │ ├── ._lockopen.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lockopen.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.1lib 不上锁的函数 │ │ │ ├── ._error.c │ │ │ ├── ._locknone.c │ │ │ ├── ._unpipc.h │ │ │ ├── error.c │ │ │ ├── locknone.c │ │ │ └── unpipc.h │ │ ├── 9.2文件上锁例子的main函数 │ │ │ ├── ._error.c │ │ │ ├── ._lockmain.c │ │ │ ├── ._locknone.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lockmain.c │ │ │ ├── locknone.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.3lib Posix fcntl上锁 │ │ │ ├── ._error.c │ │ │ ├── ._lockfcntl.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lockfcntl.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.4lib 调用fcntl获取或释放一格锁 │ │ │ ├── ._error.c │ │ │ ├── ._lock_reg.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lock_reg.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.5lib 调用fcntl测试一个锁 │ │ │ ├── ._error.c │ │ │ ├── ._lock_test.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── lock_test.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ ├── 9.8确定在有一格写入锁待处理期间是否允许有另一个读出锁 │ │ │ ├── ._error.c │ │ │ ├── ._gf_time.c │ │ │ ├── ._lock_reg.c │ │ │ ├── ._test2.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── gf_time.c │ │ │ ├── lock_reg.c │ │ │ ├── test2.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ │ └── 9.9测试写入者是否比读出者优先 │ │ │ ├── ._error.c │ │ │ ├── ._gf_time.c │ │ │ ├── ._lock_reg.c │ │ │ ├── ._test3.c │ │ │ ├── ._unpipc.h │ │ │ ├── ._wrapunix.c │ │ │ ├── error.c │ │ │ ├── gf_time.c │ │ │ ├── lock_reg.c │ │ │ ├── test3.c │ │ │ ├── unpipc.h │ │ │ └── wrapunix.c │ └── config.h └── unpipc使用方法 │ ├── ._UNIX网络编程 卷2 源代码使用.txt │ ├── ._config.h │ ├── ._wrapunix.c │ ├── ._代码使用常见错误.txt │ ├── UNIX网络编程 卷2 源代码使用.txt │ ├── config.h │ ├── wrapunix.c │ └── 代码使用常见错误.txt ├── fastevent ├── fastevent.sdf ├── fastevent.sln ├── fastevent.v12.suo ├── fastevent │ ├── Channel.cpp │ ├── Channel.h │ ├── Epoll.cpp │ ├── Epoll.h │ ├── Logger.cpp │ ├── Logger.h │ ├── fastevent.vcxproj │ └── fastevent.vcxproj.filters └── include │ ├── FlexLexer.h │ ├── GL │ ├── glxint.h │ ├── glxmd.h │ ├── glxproto.h │ ├── glxtokens.h │ └── internal │ │ └── glcore.h │ ├── X11 │ ├── DECkeysym.h │ ├── HPkeysym.h │ ├── ImUtil.h │ ├── PM │ │ ├── PM.h │ │ └── PMproto.h │ ├── Sunkeysym.h │ ├── X.h │ ├── XF86keysym.h │ ├── XKBlib.h │ ├── XWDFile.h │ ├── Xalloca.h │ ├── Xarch.h │ ├── Xatom.h │ ├── Xauth.h │ ├── Xcms.h │ ├── Xdefs.h │ ├── Xfuncproto.h │ ├── Xfuncs.h │ ├── Xlib-xcb.h │ ├── Xlib.h │ ├── XlibConf.h │ ├── Xlibint.h │ ├── Xlocale.h │ ├── Xmd.h │ ├── Xos.h │ ├── Xos_r.h │ ├── Xosdefs.h │ ├── Xpoll.h │ ├── Xproto.h │ ├── Xprotostr.h │ ├── Xregion.h │ ├── Xresource.h │ ├── Xthreads.h │ ├── Xutil.h │ ├── Xw32defs.h │ ├── Xwindows.h │ ├── Xwinsock.h │ ├── ap_keysym.h │ ├── cursorfont.h │ ├── dri │ │ ├── xf86dri.h │ │ ├── xf86driproto.h │ │ └── xf86dristr.h │ ├── extensions │ │ ├── EVI.h │ │ ├── EVIproto.h │ │ ├── XI.h │ │ ├── XI2.h │ │ ├── XI2proto.h │ │ ├── XIproto.h │ │ ├── XKB.h │ │ ├── XKBgeom.h │ │ ├── XKBproto.h │ │ ├── XKBsrv.h │ │ ├── XKBstr.h │ │ ├── XResproto.h │ │ ├── Xeviestr.h │ │ ├── Xv.h │ │ ├── XvMC.h │ │ ├── XvMCproto.h │ │ ├── Xvproto.h │ │ ├── ag.h │ │ ├── agproto.h │ │ ├── bigreqsproto.h │ │ ├── bigreqstr.h │ │ ├── composite.h │ │ ├── compositeproto.h │ │ ├── cup.h │ │ ├── cupproto.h │ │ ├── damageproto.h │ │ ├── damagewire.h │ │ ├── dbe.h │ │ ├── dbeproto.h │ │ ├── dmx.h │ │ ├── dmxproto.h │ │ ├── dpmsconst.h │ │ ├── dpmsproto.h │ │ ├── dri2proto.h │ │ ├── dri2tokens.h │ │ ├── dri3proto.h │ │ ├── evieproto.h │ │ ├── ge.h │ │ ├── geproto.h │ │ ├── lbx.h │ │ ├── lbxproto.h │ │ ├── mitmiscconst.h │ │ ├── mitmiscproto.h │ │ ├── multibufconst.h │ │ ├── multibufproto.h │ │ ├── panoramiXproto.h │ │ ├── presentproto.h │ │ ├── presenttokens.h │ │ ├── randr.h │ │ ├── randrproto.h │ │ ├── recordconst.h │ │ ├── recordproto.h │ │ ├── recordstr.h │ │ ├── render.h │ │ ├── renderproto.h │ │ ├── saver.h │ │ ├── saverproto.h │ │ ├── secur.h │ │ ├── securproto.h │ │ ├── shapeconst.h │ │ ├── shapeproto.h │ │ ├── shapestr.h │ │ ├── shm.h │ │ ├── shmproto.h │ │ ├── shmstr.h │ │ ├── syncconst.h │ │ ├── syncproto.h │ │ ├── syncstr.h │ │ ├── vldXvMC.h │ │ ├── xcmiscproto.h │ │ ├── xcmiscstr.h │ │ ├── xf86bigfont.h │ │ ├── xf86bigfproto.h │ │ ├── xf86bigfstr.h │ │ ├── xf86dga.h │ │ ├── xf86dga1const.h │ │ ├── xf86dga1proto.h │ │ ├── xf86dga1str.h │ │ ├── xf86dgaconst.h │ │ ├── xf86dgaproto.h │ │ ├── xf86dgastr.h │ │ ├── xf86misc.h │ │ ├── xf86mscstr.h │ │ ├── xf86vm.h │ │ ├── xf86vmproto.h │ │ ├── xf86vmstr.h │ │ ├── xfixesproto.h │ │ ├── xfixeswire.h │ │ ├── xtestconst.h │ │ ├── xtestext1const.h │ │ ├── xtestext1proto.h │ │ └── xtestproto.h │ ├── fonts │ │ ├── FS.h │ │ ├── FSproto.h │ │ ├── font.h │ │ ├── fontproto.h │ │ ├── fontstruct.h │ │ └── fsmasks.h │ ├── keysym.h │ ├── keysymdef.h │ └── xpm.h │ ├── _G_config.h │ ├── a.out.h │ ├── aio.h │ ├── aliases.h │ ├── alloca.h │ ├── ar.h │ ├── ares.h │ ├── ares_build.h │ ├── ares_dns.h │ ├── ares_rules.h │ ├── ares_version.h │ ├── argp.h │ ├── argz.h │ ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── nameser.h │ ├── nameser_compat.h │ ├── telnet.h │ └── tftp.h │ ├── asm-generic │ ├── auxvec.h │ ├── bitsperlong.h │ ├── errno-base.h │ ├── errno.h │ ├── fcntl.h │ ├── int-l64.h │ ├── int-ll64.h │ ├── ioctl.h │ ├── ioctls.h │ ├── ipcbuf.h │ ├── kvm_para.h │ ├── mman-common.h │ ├── mman.h │ ├── msgbuf.h │ ├── param.h │ ├── poll.h │ ├── posix_types.h │ ├── resource.h │ ├── sembuf.h │ ├── setup.h │ ├── shmbuf.h │ ├── shmparam.h │ ├── siginfo.h │ ├── signal-defs.h │ ├── signal.h │ ├── socket.h │ ├── sockios.h │ ├── stat.h │ ├── statfs.h │ ├── swab.h │ ├── termbits.h │ ├── termios.h │ ├── types.h │ ├── ucontext.h │ └── unistd.h │ ├── asm │ ├── a.out.h │ ├── auxvec.h │ ├── bitsperlong.h │ ├── boot.h │ ├── bootparam.h │ ├── byteorder.h │ ├── debugreg.h │ ├── e820.h │ ├── errno.h │ ├── fcntl.h │ ├── hw_breakpoint.h │ ├── hyperv.h │ ├── ioctl.h │ ├── ioctls.h │ ├── ipcbuf.h │ ├── ist.h │ ├── kvm.h │ ├── kvm_para.h │ ├── kvm_perf.h │ ├── ldt.h │ ├── mce.h │ ├── mman.h │ ├── msgbuf.h │ ├── msr-index.h │ ├── msr.h │ ├── mtrr.h │ ├── param.h │ ├── perf_regs.h │ ├── poll.h │ ├── posix_types.h │ ├── posix_types_32.h │ ├── posix_types_64.h │ ├── posix_types_x32.h │ ├── prctl.h │ ├── processor-flags.h │ ├── ptrace-abi.h │ ├── ptrace.h │ ├── resource.h │ ├── sembuf.h │ ├── setup.h │ ├── shmbuf.h │ ├── sigcontext.h │ ├── sigcontext32.h │ ├── siginfo.h │ ├── signal.h │ ├── socket.h │ ├── sockios.h │ ├── stat.h │ ├── statfs.h │ ├── svm.h │ ├── swab.h │ ├── termbits.h │ ├── termios.h │ ├── types.h │ ├── ucontext.h │ ├── unistd.h │ ├── unistd_32.h │ ├── unistd_64.h │ ├── unistd_x32.h │ ├── vm86.h │ ├── vmx.h │ └── vsyscall.h │ ├── assert.h │ ├── autosprintf.h │ ├── bits │ ├── a.out.h │ ├── byteswap-16.h │ ├── byteswap.h │ ├── cmathcalls.h │ ├── confname.h │ ├── dirent.h │ ├── dlfcn.h │ ├── elfclass.h │ ├── endian.h │ ├── environments.h │ ├── epoll.h │ ├── errno.h │ ├── error.h │ ├── eventfd.h │ ├── fcntl-linux.h │ ├── fcntl.h │ ├── fcntl2.h │ ├── fenv.h │ ├── fenvinline.h │ ├── huge_val.h │ ├── huge_valf.h │ ├── huge_vall.h │ ├── hwcap.h │ ├── in.h │ ├── inf.h │ ├── initspin.h │ ├── inotify.h │ ├── ioctl-types.h │ ├── ioctls.h │ ├── ipc.h │ ├── ipctypes.h │ ├── libc-lock.h │ ├── libio-ldbl.h │ ├── link.h │ ├── local_lim.h │ ├── locale.h │ ├── math-finite.h │ ├── mathcalls.h │ ├── mathdef.h │ ├── mathinline.h │ ├── mman.h │ ├── monetary-ldbl.h │ ├── mqueue.h │ ├── mqueue2.h │ ├── msq.h │ ├── nan.h │ ├── netdb.h │ ├── param.h │ ├── poll.h │ ├── poll2.h │ ├── posix1_lim.h │ ├── posix2_lim.h │ ├── posix_opt.h │ ├── printf-ldbl.h │ ├── pthreadtypes.h │ ├── resource.h │ ├── sched.h │ ├── select.h │ ├── select2.h │ ├── sem.h │ ├── semaphore.h │ ├── setjmp.h │ ├── setjmp2.h │ ├── shm.h │ ├── sigaction.h │ ├── sigcontext.h │ ├── siginfo.h │ ├── signalfd.h │ ├── signum.h │ ├── sigset.h │ ├── sigstack.h │ ├── sigthread.h │ ├── sockaddr.h │ ├── socket.h │ ├── socket2.h │ ├── socket_type.h │ ├── stab.def │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── stdio-ldbl.h │ ├── stdio-lock.h │ ├── stdio.h │ ├── stdio2.h │ ├── stdio_lim.h │ ├── stdlib-float.h │ ├── stdlib-ldbl.h │ ├── stdlib.h │ ├── string.h │ ├── string2.h │ ├── string3.h │ ├── sys_errlist.h │ ├── syscall.h │ ├── sysctl.h │ ├── syslog-ldbl.h │ ├── syslog-path.h │ ├── syslog.h │ ├── termios.h │ ├── time.h │ ├── timerfd.h │ ├── timex.h │ ├── types.h │ ├── typesizes.h │ ├── uio.h │ ├── unistd.h │ ├── ustat.h │ ├── utmp.h │ ├── utmpx.h │ ├── utsname.h │ ├── waitflags.h │ ├── waitstatus.h │ ├── wchar-ldbl.h │ ├── wchar.h │ ├── wchar2.h │ ├── wordsize.h │ └── xopen_lim.h │ ├── byteswap.h │ ├── bzlib.h │ ├── c++ │ ├── 4.8.2 │ │ ├── algorithm │ │ ├── array │ │ ├── atomic │ │ ├── backward │ │ │ ├── auto_ptr.h │ │ │ ├── backward_warning.h │ │ │ ├── binders.h │ │ │ ├── hash_fun.h │ │ │ ├── hash_map │ │ │ ├── hash_set │ │ │ ├── hashtable.h │ │ │ └── strstream │ │ ├── bits │ │ │ ├── algorithmfwd.h │ │ │ ├── alloc_traits.h │ │ │ ├── allocator.h │ │ │ ├── atomic_base.h │ │ │ ├── atomic_lockfree_defines.h │ │ │ ├── basic_ios.h │ │ │ ├── basic_ios.tcc │ │ │ ├── basic_string.h │ │ │ ├── basic_string.tcc │ │ │ ├── boost_concept_check.h │ │ │ ├── c++0x_warning.h │ │ │ ├── char_traits.h │ │ │ ├── codecvt.h │ │ │ ├── concept_check.h │ │ │ ├── cpp_type_traits.h │ │ │ ├── cxxabi_forced.h │ │ │ ├── deque.tcc │ │ │ ├── exception_defines.h │ │ │ ├── exception_ptr.h │ │ │ ├── forward_list.h │ │ │ ├── forward_list.tcc │ │ │ ├── fstream.tcc │ │ │ ├── functexcept.h │ │ │ ├── functional_hash.h │ │ │ ├── gslice.h │ │ │ ├── gslice_array.h │ │ │ ├── hash_bytes.h │ │ │ ├── hashtable.h │ │ │ ├── hashtable_policy.h │ │ │ ├── indirect_array.h │ │ │ ├── ios_base.h │ │ │ ├── istream.tcc │ │ │ ├── list.tcc │ │ │ ├── locale_classes.h │ │ │ ├── locale_classes.tcc │ │ │ ├── locale_facets.h │ │ │ ├── locale_facets.tcc │ │ │ ├── locale_facets_nonio.h │ │ │ ├── locale_facets_nonio.tcc │ │ │ ├── localefwd.h │ │ │ ├── mask_array.h │ │ │ ├── memoryfwd.h │ │ │ ├── move.h │ │ │ ├── nested_exception.h │ │ │ ├── ostream.tcc │ │ │ ├── ostream_insert.h │ │ │ ├── postypes.h │ │ │ ├── ptr_traits.h │ │ │ ├── random.h │ │ │ ├── random.tcc │ │ │ ├── range_access.h │ │ │ ├── regex.h │ │ │ ├── regex_compiler.h │ │ │ ├── regex_constants.h │ │ │ ├── regex_cursor.h │ │ │ ├── regex_error.h │ │ │ ├── regex_grep_matcher.h │ │ │ ├── regex_grep_matcher.tcc │ │ │ ├── regex_nfa.h │ │ │ ├── regex_nfa.tcc │ │ │ ├── shared_ptr.h │ │ │ ├── shared_ptr_base.h │ │ │ ├── slice_array.h │ │ │ ├── sstream.tcc │ │ │ ├── stl_algo.h │ │ │ ├── stl_algobase.h │ │ │ ├── stl_bvector.h │ │ │ ├── stl_construct.h │ │ │ ├── stl_deque.h │ │ │ ├── stl_function.h │ │ │ ├── stl_heap.h │ │ │ ├── stl_iterator.h │ │ │ ├── stl_iterator_base_funcs.h │ │ │ ├── stl_iterator_base_types.h │ │ │ ├── stl_list.h │ │ │ ├── stl_map.h │ │ │ ├── stl_multimap.h │ │ │ ├── stl_multiset.h │ │ │ ├── stl_numeric.h │ │ │ ├── stl_pair.h │ │ │ ├── stl_queue.h │ │ │ ├── stl_raw_storage_iter.h │ │ │ ├── stl_relops.h │ │ │ ├── stl_set.h │ │ │ ├── stl_stack.h │ │ │ ├── stl_tempbuf.h │ │ │ ├── stl_tree.h │ │ │ ├── stl_uninitialized.h │ │ │ ├── stl_vector.h │ │ │ ├── stream_iterator.h │ │ │ ├── streambuf.tcc │ │ │ ├── streambuf_iterator.h │ │ │ ├── stringfwd.h │ │ │ ├── unique_ptr.h │ │ │ ├── unordered_map.h │ │ │ ├── unordered_set.h │ │ │ ├── uses_allocator.h │ │ │ ├── valarray_after.h │ │ │ ├── valarray_array.h │ │ │ ├── valarray_array.tcc │ │ │ ├── valarray_before.h │ │ │ └── vector.tcc │ │ ├── bitset │ │ ├── cassert │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfenv │ │ ├── cfloat │ │ ├── chrono │ │ ├── cinttypes │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── complex │ │ ├── complex.h │ │ ├── condition_variable │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdalign │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctgmath │ │ ├── ctime │ │ ├── cwchar │ │ ├── cwctype │ │ ├── cxxabi.h │ │ ├── debug │ │ │ ├── array │ │ │ ├── bitset │ │ │ ├── debug.h │ │ │ ├── deque │ │ │ ├── formatter.h │ │ │ ├── forward_list │ │ │ ├── functions.h │ │ │ ├── list │ │ │ ├── macros.h │ │ │ ├── map │ │ │ ├── map.h │ │ │ ├── multimap.h │ │ │ ├── multiset.h │ │ │ ├── safe_base.h │ │ │ ├── safe_iterator.h │ │ │ ├── safe_iterator.tcc │ │ │ ├── safe_local_iterator.h │ │ │ ├── safe_local_iterator.tcc │ │ │ ├── safe_sequence.h │ │ │ ├── safe_sequence.tcc │ │ │ ├── safe_unordered_base.h │ │ │ ├── safe_unordered_container.h │ │ │ ├── safe_unordered_container.tcc │ │ │ ├── set │ │ │ ├── set.h │ │ │ ├── string │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ └── vector │ │ ├── decimal │ │ │ ├── decimal │ │ │ └── decimal.h │ │ ├── deque │ │ ├── exception │ │ ├── ext │ │ │ ├── algorithm │ │ │ ├── alloc_traits.h │ │ │ ├── array_allocator.h │ │ │ ├── atomicity.h │ │ │ ├── bitmap_allocator.h │ │ │ ├── cast.h │ │ │ ├── cmath │ │ │ ├── codecvt_specializations.h │ │ │ ├── concurrence.h │ │ │ ├── debug_allocator.h │ │ │ ├── enc_filebuf.h │ │ │ ├── extptr_allocator.h │ │ │ ├── functional │ │ │ ├── hash_map │ │ │ ├── hash_set │ │ │ ├── iterator │ │ │ ├── malloc_allocator.h │ │ │ ├── memory │ │ │ ├── mt_allocator.h │ │ │ ├── new_allocator.h │ │ │ ├── numeric │ │ │ ├── numeric_traits.h │ │ │ ├── pb_ds │ │ │ │ ├── assoc_container.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bin_search_tree_ │ │ │ │ │ │ ├── bin_search_tree_.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ │ ├── point_iterators.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ ├── binary_heap_ │ │ │ │ │ │ ├── binary_heap_.hpp │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── entry_cmp.hpp │ │ │ │ │ │ ├── entry_pred.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── resize_policy.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── binomial_heap_ │ │ │ │ │ │ ├── binomial_heap_.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ └── debug_fn_imps.hpp │ │ │ │ │ ├── binomial_heap_base_ │ │ │ │ │ │ ├── binomial_heap_base_.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ │ ├── branch_policy │ │ │ │ │ │ ├── branch_policy.hpp │ │ │ │ │ │ ├── null_node_metadata.hpp │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ ├── cc_hash_table_map_ │ │ │ │ │ │ ├── cc_ht_map_.hpp │ │ │ │ │ │ ├── cmp_fn_imps.hpp │ │ │ │ │ │ ├── cond_key_dtor_entry_dealtor.hpp │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── entry_list_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── size_fn_imps.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── cond_dealtor.hpp │ │ │ │ │ ├── container_base_dispatch.hpp │ │ │ │ │ ├── debug_map_base.hpp │ │ │ │ │ ├── eq_fn │ │ │ │ │ │ ├── eq_by_less.hpp │ │ │ │ │ │ └── hash_eq_fn.hpp │ │ │ │ │ ├── gp_hash_table_map_ │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── find_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── gp_ht_map_.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── iterator_fn_imps.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── hash_fn │ │ │ │ │ │ ├── direct_mask_range_hashing_imp.hpp │ │ │ │ │ │ ├── direct_mod_range_hashing_imp.hpp │ │ │ │ │ │ ├── linear_probe_fn_imp.hpp │ │ │ │ │ │ ├── mask_based_range_hashing.hpp │ │ │ │ │ │ ├── mod_based_range_hashing.hpp │ │ │ │ │ │ ├── probe_fn_base.hpp │ │ │ │ │ │ ├── quadratic_probe_fn_imp.hpp │ │ │ │ │ │ ├── ranged_hash_fn.hpp │ │ │ │ │ │ ├── ranged_probe_fn.hpp │ │ │ │ │ │ ├── sample_probe_fn.hpp │ │ │ │ │ │ ├── sample_range_hashing.hpp │ │ │ │ │ │ ├── sample_ranged_hash_fn.hpp │ │ │ │ │ │ └── sample_ranged_probe_fn.hpp │ │ │ │ │ ├── left_child_next_sibling_heap_ │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── left_child_next_sibling_heap_.hpp │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── list_update_map_ │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── entry_metadata_base.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── lu_map_.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── list_update_policy │ │ │ │ │ │ ├── lu_counter_metadata.hpp │ │ │ │ │ │ └── sample_update_policy.hpp │ │ │ │ │ ├── ov_tree_map_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ │ ├── ov_tree_map_.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ ├── pairing_heap_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── pairing_heap_.hpp │ │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ │ ├── pat_trie_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_join_fn_imps.hpp │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ ├── pat_trie_.hpp │ │ │ │ │ │ ├── pat_trie_base.hpp │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ │ ├── split_fn_imps.hpp │ │ │ │ │ │ ├── synth_access_traits.hpp │ │ │ │ │ │ ├── trace_fn_imps.hpp │ │ │ │ │ │ ├── traits.hpp │ │ │ │ │ │ └── update_fn_imps.hpp │ │ │ │ │ ├── priority_queue_base_dispatch.hpp │ │ │ │ │ ├── rb_tree_map_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ ├── rb_tree_.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ ├── rc_binomial_heap_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── rc.hpp │ │ │ │ │ │ ├── rc_binomial_heap_.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── resize_policy │ │ │ │ │ │ ├── cc_hash_max_collision_check_resize_trigger_imp.hpp │ │ │ │ │ │ ├── hash_exponential_size_policy_imp.hpp │ │ │ │ │ │ ├── hash_load_check_resize_trigger_imp.hpp │ │ │ │ │ │ ├── hash_load_check_resize_trigger_size_base.hpp │ │ │ │ │ │ ├── hash_prime_size_policy_imp.hpp │ │ │ │ │ │ ├── hash_standard_resize_policy_imp.hpp │ │ │ │ │ │ ├── sample_resize_policy.hpp │ │ │ │ │ │ ├── sample_resize_trigger.hpp │ │ │ │ │ │ └── sample_size_policy.hpp │ │ │ │ │ ├── splay_tree_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ ├── splay_fn_imps.hpp │ │ │ │ │ │ ├── splay_tree_.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ ├── standard_policies.hpp │ │ │ │ │ ├── thin_heap_ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ ├── thin_heap_.hpp │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ ├── tree_policy │ │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ │ └── sample_tree_node_update.hpp │ │ │ │ │ ├── tree_trace_base.hpp │ │ │ │ │ ├── trie_policy │ │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ │ ├── prefix_search_node_update_imp.hpp │ │ │ │ │ │ ├── sample_trie_access_traits.hpp │ │ │ │ │ │ ├── sample_trie_node_update.hpp │ │ │ │ │ │ ├── trie_policy_base.hpp │ │ │ │ │ │ └── trie_string_access_traits_imp.hpp │ │ │ │ │ ├── type_utils.hpp │ │ │ │ │ ├── types_traits.hpp │ │ │ │ │ └── unordered_iterator │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ │ └── point_iterator.hpp │ │ │ │ ├── exception.hpp │ │ │ │ ├── hash_policy.hpp │ │ │ │ ├── list_update_policy.hpp │ │ │ │ ├── priority_queue.hpp │ │ │ │ ├── tag_and_trait.hpp │ │ │ │ ├── tree_policy.hpp │ │ │ │ └── trie_policy.hpp │ │ │ ├── pod_char_traits.h │ │ │ ├── pointer.h │ │ │ ├── pool_allocator.h │ │ │ ├── random │ │ │ ├── random.tcc │ │ │ ├── rb_tree │ │ │ ├── rc_string_base.h │ │ │ ├── rope │ │ │ ├── ropeimpl.h │ │ │ ├── slist │ │ │ ├── sso_string_base.h │ │ │ ├── stdio_filebuf.h │ │ │ ├── stdio_sync_filebuf.h │ │ │ ├── string_conversions.h │ │ │ ├── throw_allocator.h │ │ │ ├── type_traits.h │ │ │ ├── typelist.h │ │ │ ├── vstring.h │ │ │ ├── vstring.tcc │ │ │ ├── vstring_fwd.h │ │ │ └── vstring_util.h │ │ ├── fenv.h │ │ ├── forward_list │ │ ├── fstream │ │ ├── functional │ │ ├── future │ │ ├── initializer_list │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── iterator │ │ ├── limits │ │ ├── list │ │ ├── locale │ │ ├── map │ │ ├── memory │ │ ├── mutex │ │ ├── new │ │ ├── numeric │ │ ├── ostream │ │ ├── parallel │ │ │ ├── algo.h │ │ │ ├── algobase.h │ │ │ ├── algorithm │ │ │ ├── algorithmfwd.h │ │ │ ├── balanced_quicksort.h │ │ │ ├── base.h │ │ │ ├── basic_iterator.h │ │ │ ├── checkers.h │ │ │ ├── compatibility.h │ │ │ ├── compiletime_settings.h │ │ │ ├── equally_split.h │ │ │ ├── features.h │ │ │ ├── find.h │ │ │ ├── find_selectors.h │ │ │ ├── for_each.h │ │ │ ├── for_each_selectors.h │ │ │ ├── iterator.h │ │ │ ├── list_partition.h │ │ │ ├── losertree.h │ │ │ ├── merge.h │ │ │ ├── multiseq_selection.h │ │ │ ├── multiway_merge.h │ │ │ ├── multiway_mergesort.h │ │ │ ├── numeric │ │ │ ├── numericfwd.h │ │ │ ├── omp_loop.h │ │ │ ├── omp_loop_static.h │ │ │ ├── par_loop.h │ │ │ ├── parallel.h │ │ │ ├── partial_sum.h │ │ │ ├── partition.h │ │ │ ├── queue.h │ │ │ ├── quicksort.h │ │ │ ├── random_number.h │ │ │ ├── random_shuffle.h │ │ │ ├── search.h │ │ │ ├── set_operations.h │ │ │ ├── settings.h │ │ │ ├── sort.h │ │ │ ├── tags.h │ │ │ ├── types.h │ │ │ ├── unique_copy.h │ │ │ └── workstealing.h │ │ ├── profile │ │ │ ├── array │ │ │ ├── base.h │ │ │ ├── bitset │ │ │ ├── deque │ │ │ ├── forward_list │ │ │ ├── impl │ │ │ │ ├── profiler.h │ │ │ │ ├── profiler_algos.h │ │ │ │ ├── profiler_container_size.h │ │ │ │ ├── profiler_hash_func.h │ │ │ │ ├── profiler_hashtable_size.h │ │ │ │ ├── profiler_list_to_slist.h │ │ │ │ ├── profiler_list_to_vector.h │ │ │ │ ├── profiler_map_to_unordered_map.h │ │ │ │ ├── profiler_node.h │ │ │ │ ├── profiler_state.h │ │ │ │ ├── profiler_trace.h │ │ │ │ ├── profiler_vector_size.h │ │ │ │ └── profiler_vector_to_list.h │ │ │ ├── iterator_tracker.h │ │ │ ├── list │ │ │ ├── map │ │ │ ├── map.h │ │ │ ├── multimap.h │ │ │ ├── multiset.h │ │ │ ├── set │ │ │ ├── set.h │ │ │ ├── unordered_base.h │ │ │ ├── unordered_map │ │ │ ├── unordered_set │ │ │ └── vector │ │ ├── queue │ │ ├── random │ │ ├── ratio │ │ ├── regex │ │ ├── scoped_allocator │ │ ├── set │ │ ├── sstream │ │ ├── stack │ │ ├── stdexcept │ │ ├── streambuf │ │ ├── string │ │ ├── system_error │ │ ├── tgmath.h │ │ ├── thread │ │ ├── tr1 │ │ │ ├── array │ │ │ ├── bessel_function.tcc │ │ │ ├── beta_function.tcc │ │ │ ├── ccomplex │ │ │ ├── cctype │ │ │ ├── cfenv │ │ │ ├── cfloat │ │ │ ├── cinttypes │ │ │ ├── climits │ │ │ ├── cmath │ │ │ ├── complex │ │ │ ├── complex.h │ │ │ ├── cstdarg │ │ │ ├── cstdbool │ │ │ ├── cstdint │ │ │ ├── cstdio │ │ │ ├── cstdlib │ │ │ ├── ctgmath │ │ │ ├── ctime │ │ │ ├── ctype.h │ │ │ ├── cwchar │ │ │ ├── cwctype │ │ │ ├── ell_integral.tcc │ │ │ ├── exp_integral.tcc │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── functional │ │ │ ├── functional_hash.h │ │ │ ├── gamma.tcc │ │ │ ├── hashtable.h │ │ │ ├── hashtable_policy.h │ │ │ ├── hypergeometric.tcc │ │ │ ├── inttypes.h │ │ │ ├── legendre_function.tcc │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── memory │ │ │ ├── modified_bessel_func.tcc │ │ │ ├── poly_hermite.tcc │ │ │ ├── poly_laguerre.tcc │ │ │ ├── random │ │ │ ├── random.h │ │ │ ├── random.tcc │ │ │ ├── regex │ │ │ ├── riemann_zeta.tcc │ │ │ ├── shared_ptr.h │ │ │ ├── special_function_util.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── tgmath.h │ │ │ ├── tuple │ │ │ ├── type_traits │ │ │ ├── unordered_map │ │ │ ├── unordered_map.h │ │ │ ├── unordered_set │ │ │ ├── unordered_set.h │ │ │ ├── utility │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── tr2 │ │ │ ├── bool_set │ │ │ ├── bool_set.tcc │ │ │ ├── dynamic_bitset │ │ │ ├── ratio │ │ │ └── type_traits │ │ ├── tuple │ │ ├── type_traits │ │ ├── typeindex │ │ ├── typeinfo │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ ├── valarray │ │ ├── vector │ │ └── x86_64-redhat-linux │ │ │ ├── 32 │ │ │ ├── bits │ │ │ │ ├── atomic_word.h │ │ │ │ ├── basic_file.h │ │ │ │ ├── c++allocator.h │ │ │ │ ├── c++config.h │ │ │ │ ├── c++io.h │ │ │ │ ├── c++locale.h │ │ │ │ ├── cpu_defines.h │ │ │ │ ├── ctype_base.h │ │ │ │ ├── ctype_inline.h │ │ │ │ ├── cxxabi_tweaks.h │ │ │ │ ├── error_constants.h │ │ │ │ ├── extc++.h │ │ │ │ ├── gthr-default.h │ │ │ │ ├── gthr-posix.h │ │ │ │ ├── gthr-single.h │ │ │ │ ├── gthr.h │ │ │ │ ├── messages_members.h │ │ │ │ ├── opt_random.h │ │ │ │ ├── os_defines.h │ │ │ │ ├── stdc++.h │ │ │ │ ├── stdtr1c++.h │ │ │ │ └── time_members.h │ │ │ └── ext │ │ │ │ └── opt_random.h │ │ │ ├── bits │ │ │ ├── atomic_word.h │ │ │ ├── basic_file.h │ │ │ ├── c++allocator.h │ │ │ ├── c++config.h │ │ │ ├── c++io.h │ │ │ ├── c++locale.h │ │ │ ├── cpu_defines.h │ │ │ ├── ctype_base.h │ │ │ ├── ctype_inline.h │ │ │ ├── cxxabi_tweaks.h │ │ │ ├── error_constants.h │ │ │ ├── extc++.h │ │ │ ├── gthr-default.h │ │ │ ├── gthr-posix.h │ │ │ ├── gthr-single.h │ │ │ ├── gthr.h │ │ │ ├── messages_members.h │ │ │ ├── opt_random.h │ │ │ ├── os_defines.h │ │ │ ├── stdc++.h │ │ │ ├── stdtr1c++.h │ │ │ └── time_members.h │ │ │ └── ext │ │ │ └── opt_random.h │ └── 4.8.5 │ │ ├── algorithm │ │ ├── array │ │ ├── atomic │ │ ├── backward │ │ ├── auto_ptr.h │ │ ├── backward_warning.h │ │ ├── binders.h │ │ ├── hash_fun.h │ │ ├── hash_map │ │ ├── hash_set │ │ ├── hashtable.h │ │ └── strstream │ │ ├── bits │ │ ├── algorithmfwd.h │ │ ├── alloc_traits.h │ │ ├── allocator.h │ │ ├── atomic_base.h │ │ ├── atomic_lockfree_defines.h │ │ ├── basic_ios.h │ │ ├── basic_ios.tcc │ │ ├── basic_string.h │ │ ├── basic_string.tcc │ │ ├── boost_concept_check.h │ │ ├── c++0x_warning.h │ │ ├── char_traits.h │ │ ├── codecvt.h │ │ ├── concept_check.h │ │ ├── cpp_type_traits.h │ │ ├── cxxabi_forced.h │ │ ├── deque.tcc │ │ ├── exception_defines.h │ │ ├── exception_ptr.h │ │ ├── forward_list.h │ │ ├── forward_list.tcc │ │ ├── fstream.tcc │ │ ├── functexcept.h │ │ ├── functional_hash.h │ │ ├── gslice.h │ │ ├── gslice_array.h │ │ ├── hash_bytes.h │ │ ├── hashtable.h │ │ ├── hashtable_policy.h │ │ ├── indirect_array.h │ │ ├── ios_base.h │ │ ├── istream.tcc │ │ ├── list.tcc │ │ ├── locale_classes.h │ │ ├── locale_classes.tcc │ │ ├── locale_facets.h │ │ ├── locale_facets.tcc │ │ ├── locale_facets_nonio.h │ │ ├── locale_facets_nonio.tcc │ │ ├── localefwd.h │ │ ├── mask_array.h │ │ ├── memoryfwd.h │ │ ├── move.h │ │ ├── nested_exception.h │ │ ├── ostream.tcc │ │ ├── ostream_insert.h │ │ ├── postypes.h │ │ ├── ptr_traits.h │ │ ├── random.h │ │ ├── random.tcc │ │ ├── range_access.h │ │ ├── regex.h │ │ ├── regex_compiler.h │ │ ├── regex_constants.h │ │ ├── regex_cursor.h │ │ ├── regex_error.h │ │ ├── regex_grep_matcher.h │ │ ├── regex_grep_matcher.tcc │ │ ├── regex_nfa.h │ │ ├── regex_nfa.tcc │ │ ├── shared_ptr.h │ │ ├── shared_ptr_base.h │ │ ├── slice_array.h │ │ ├── sstream.tcc │ │ ├── stl_algo.h │ │ ├── stl_algobase.h │ │ ├── stl_bvector.h │ │ ├── stl_construct.h │ │ ├── stl_deque.h │ │ ├── stl_function.h │ │ ├── stl_heap.h │ │ ├── stl_iterator.h │ │ ├── stl_iterator_base_funcs.h │ │ ├── stl_iterator_base_types.h │ │ ├── stl_list.h │ │ ├── stl_map.h │ │ ├── stl_multimap.h │ │ ├── stl_multiset.h │ │ ├── stl_numeric.h │ │ ├── stl_pair.h │ │ ├── stl_queue.h │ │ ├── stl_raw_storage_iter.h │ │ ├── stl_relops.h │ │ ├── stl_set.h │ │ ├── stl_stack.h │ │ ├── stl_tempbuf.h │ │ ├── stl_tree.h │ │ ├── stl_uninitialized.h │ │ ├── stl_vector.h │ │ ├── stream_iterator.h │ │ ├── streambuf.tcc │ │ ├── streambuf_iterator.h │ │ ├── stringfwd.h │ │ ├── unique_ptr.h │ │ ├── unordered_map.h │ │ ├── unordered_set.h │ │ ├── uses_allocator.h │ │ ├── valarray_after.h │ │ ├── valarray_array.h │ │ ├── valarray_array.tcc │ │ ├── valarray_before.h │ │ └── vector.tcc │ │ ├── bitset │ │ ├── cassert │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cerrno │ │ ├── cfenv │ │ ├── cfloat │ │ ├── chrono │ │ ├── cinttypes │ │ ├── ciso646 │ │ ├── climits │ │ ├── clocale │ │ ├── cmath │ │ ├── complex │ │ ├── complex.h │ │ ├── condition_variable │ │ ├── csetjmp │ │ ├── csignal │ │ ├── cstdalign │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstddef │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── cstring │ │ ├── ctgmath │ │ ├── ctime │ │ ├── cwchar │ │ ├── cwctype │ │ ├── cxxabi.h │ │ ├── debug │ │ ├── array │ │ ├── bitset │ │ ├── debug.h │ │ ├── deque │ │ ├── formatter.h │ │ ├── forward_list │ │ ├── functions.h │ │ ├── list │ │ ├── macros.h │ │ ├── map │ │ ├── map.h │ │ ├── multimap.h │ │ ├── multiset.h │ │ ├── safe_base.h │ │ ├── safe_iterator.h │ │ ├── safe_iterator.tcc │ │ ├── safe_local_iterator.h │ │ ├── safe_local_iterator.tcc │ │ ├── safe_sequence.h │ │ ├── safe_sequence.tcc │ │ ├── safe_unordered_base.h │ │ ├── safe_unordered_container.h │ │ ├── safe_unordered_container.tcc │ │ ├── set │ │ ├── set.h │ │ ├── string │ │ ├── unordered_map │ │ ├── unordered_set │ │ └── vector │ │ ├── decimal │ │ ├── decimal │ │ └── decimal.h │ │ ├── deque │ │ ├── exception │ │ ├── ext │ │ ├── algorithm │ │ ├── alloc_traits.h │ │ ├── array_allocator.h │ │ ├── atomicity.h │ │ ├── bitmap_allocator.h │ │ ├── cast.h │ │ ├── cmath │ │ ├── codecvt_specializations.h │ │ ├── concurrence.h │ │ ├── debug_allocator.h │ │ ├── enc_filebuf.h │ │ ├── extptr_allocator.h │ │ ├── functional │ │ ├── hash_map │ │ ├── hash_set │ │ ├── iterator │ │ ├── malloc_allocator.h │ │ ├── memory │ │ ├── mt_allocator.h │ │ ├── new_allocator.h │ │ ├── numeric │ │ ├── numeric_traits.h │ │ ├── pb_ds │ │ │ ├── assoc_container.hpp │ │ │ ├── detail │ │ │ │ ├── bin_search_tree_ │ │ │ │ │ ├── bin_search_tree_.hpp │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ ├── point_iterators.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── traits.hpp │ │ │ │ ├── binary_heap_ │ │ │ │ │ ├── binary_heap_.hpp │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── entry_cmp.hpp │ │ │ │ │ ├── entry_pred.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── resize_policy.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── binomial_heap_ │ │ │ │ │ ├── binomial_heap_.hpp │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ └── debug_fn_imps.hpp │ │ │ │ ├── binomial_heap_base_ │ │ │ │ │ ├── binomial_heap_base_.hpp │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ ├── branch_policy │ │ │ │ │ ├── branch_policy.hpp │ │ │ │ │ ├── null_node_metadata.hpp │ │ │ │ │ └── traits.hpp │ │ │ │ ├── cc_hash_table_map_ │ │ │ │ │ ├── cc_ht_map_.hpp │ │ │ │ │ ├── cmp_fn_imps.hpp │ │ │ │ │ ├── cond_key_dtor_entry_dealtor.hpp │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ ├── entry_list_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ ├── size_fn_imps.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── cond_dealtor.hpp │ │ │ │ ├── container_base_dispatch.hpp │ │ │ │ ├── debug_map_base.hpp │ │ │ │ ├── eq_fn │ │ │ │ │ ├── eq_by_less.hpp │ │ │ │ │ └── hash_eq_fn.hpp │ │ │ │ ├── gp_hash_table_map_ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── find_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ ├── gp_ht_map_.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ ├── iterator_fn_imps.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── hash_fn │ │ │ │ │ ├── direct_mask_range_hashing_imp.hpp │ │ │ │ │ ├── direct_mod_range_hashing_imp.hpp │ │ │ │ │ ├── linear_probe_fn_imp.hpp │ │ │ │ │ ├── mask_based_range_hashing.hpp │ │ │ │ │ ├── mod_based_range_hashing.hpp │ │ │ │ │ ├── probe_fn_base.hpp │ │ │ │ │ ├── quadratic_probe_fn_imp.hpp │ │ │ │ │ ├── ranged_hash_fn.hpp │ │ │ │ │ ├── ranged_probe_fn.hpp │ │ │ │ │ ├── sample_probe_fn.hpp │ │ │ │ │ ├── sample_range_hashing.hpp │ │ │ │ │ ├── sample_ranged_hash_fn.hpp │ │ │ │ │ └── sample_ranged_probe_fn.hpp │ │ │ │ ├── left_child_next_sibling_heap_ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── left_child_next_sibling_heap_.hpp │ │ │ │ │ ├── node.hpp │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── list_update_map_ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── entry_metadata_base.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── lu_map_.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── list_update_policy │ │ │ │ │ ├── lu_counter_metadata.hpp │ │ │ │ │ └── sample_update_policy.hpp │ │ │ │ ├── ov_tree_map_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ ├── ov_tree_map_.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── traits.hpp │ │ │ │ ├── pairing_heap_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── pairing_heap_.hpp │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ ├── pat_trie_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_join_fn_imps.hpp │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ ├── pat_trie_.hpp │ │ │ │ │ ├── pat_trie_base.hpp │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ ├── split_fn_imps.hpp │ │ │ │ │ ├── synth_access_traits.hpp │ │ │ │ │ ├── trace_fn_imps.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ └── update_fn_imps.hpp │ │ │ │ ├── priority_queue_base_dispatch.hpp │ │ │ │ ├── rb_tree_map_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── node.hpp │ │ │ │ │ ├── rb_tree_.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── traits.hpp │ │ │ │ ├── rc_binomial_heap_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── rc.hpp │ │ │ │ │ ├── rc_binomial_heap_.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── resize_policy │ │ │ │ │ ├── cc_hash_max_collision_check_resize_trigger_imp.hpp │ │ │ │ │ ├── hash_exponential_size_policy_imp.hpp │ │ │ │ │ ├── hash_load_check_resize_trigger_imp.hpp │ │ │ │ │ ├── hash_load_check_resize_trigger_size_base.hpp │ │ │ │ │ ├── hash_prime_size_policy_imp.hpp │ │ │ │ │ ├── hash_standard_resize_policy_imp.hpp │ │ │ │ │ ├── sample_resize_policy.hpp │ │ │ │ │ ├── sample_resize_trigger.hpp │ │ │ │ │ └── sample_size_policy.hpp │ │ │ │ ├── splay_tree_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── node.hpp │ │ │ │ │ ├── splay_fn_imps.hpp │ │ │ │ │ ├── splay_tree_.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ └── traits.hpp │ │ │ │ ├── standard_policies.hpp │ │ │ │ ├── thin_heap_ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ ├── thin_heap_.hpp │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ ├── tree_policy │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ └── sample_tree_node_update.hpp │ │ │ │ ├── tree_trace_base.hpp │ │ │ │ ├── trie_policy │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ ├── prefix_search_node_update_imp.hpp │ │ │ │ │ ├── sample_trie_access_traits.hpp │ │ │ │ │ ├── sample_trie_node_update.hpp │ │ │ │ │ ├── trie_policy_base.hpp │ │ │ │ │ └── trie_string_access_traits_imp.hpp │ │ │ │ ├── type_utils.hpp │ │ │ │ ├── types_traits.hpp │ │ │ │ └── unordered_iterator │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── point_const_iterator.hpp │ │ │ │ │ └── point_iterator.hpp │ │ │ ├── exception.hpp │ │ │ ├── hash_policy.hpp │ │ │ ├── list_update_policy.hpp │ │ │ ├── priority_queue.hpp │ │ │ ├── tag_and_trait.hpp │ │ │ ├── tree_policy.hpp │ │ │ └── trie_policy.hpp │ │ ├── pod_char_traits.h │ │ ├── pointer.h │ │ ├── pool_allocator.h │ │ ├── random │ │ ├── random.tcc │ │ ├── rb_tree │ │ ├── rc_string_base.h │ │ ├── rope │ │ ├── ropeimpl.h │ │ ├── slist │ │ ├── sso_string_base.h │ │ ├── stdio_filebuf.h │ │ ├── stdio_sync_filebuf.h │ │ ├── string_conversions.h │ │ ├── throw_allocator.h │ │ ├── type_traits.h │ │ ├── typelist.h │ │ ├── vstring.h │ │ ├── vstring.tcc │ │ ├── vstring_fwd.h │ │ └── vstring_util.h │ │ ├── fenv.h │ │ ├── forward_list │ │ ├── fstream │ │ ├── functional │ │ ├── future │ │ ├── initializer_list │ │ ├── iomanip │ │ ├── ios │ │ ├── iosfwd │ │ ├── iostream │ │ ├── istream │ │ ├── iterator │ │ ├── limits │ │ ├── list │ │ ├── locale │ │ ├── map │ │ ├── memory │ │ ├── mutex │ │ ├── new │ │ ├── numeric │ │ ├── ostream │ │ ├── parallel │ │ ├── algo.h │ │ ├── algobase.h │ │ ├── algorithm │ │ ├── algorithmfwd.h │ │ ├── balanced_quicksort.h │ │ ├── base.h │ │ ├── basic_iterator.h │ │ ├── checkers.h │ │ ├── compatibility.h │ │ ├── compiletime_settings.h │ │ ├── equally_split.h │ │ ├── features.h │ │ ├── find.h │ │ ├── find_selectors.h │ │ ├── for_each.h │ │ ├── for_each_selectors.h │ │ ├── iterator.h │ │ ├── list_partition.h │ │ ├── losertree.h │ │ ├── merge.h │ │ ├── multiseq_selection.h │ │ ├── multiway_merge.h │ │ ├── multiway_mergesort.h │ │ ├── numeric │ │ ├── numericfwd.h │ │ ├── omp_loop.h │ │ ├── omp_loop_static.h │ │ ├── par_loop.h │ │ ├── parallel.h │ │ ├── partial_sum.h │ │ ├── partition.h │ │ ├── queue.h │ │ ├── quicksort.h │ │ ├── random_number.h │ │ ├── random_shuffle.h │ │ ├── search.h │ │ ├── set_operations.h │ │ ├── settings.h │ │ ├── sort.h │ │ ├── tags.h │ │ ├── types.h │ │ ├── unique_copy.h │ │ └── workstealing.h │ │ ├── profile │ │ ├── array │ │ ├── base.h │ │ ├── bitset │ │ ├── deque │ │ ├── forward_list │ │ ├── impl │ │ │ ├── profiler.h │ │ │ ├── profiler_algos.h │ │ │ ├── profiler_container_size.h │ │ │ ├── profiler_hash_func.h │ │ │ ├── profiler_hashtable_size.h │ │ │ ├── profiler_list_to_slist.h │ │ │ ├── profiler_list_to_vector.h │ │ │ ├── profiler_map_to_unordered_map.h │ │ │ ├── profiler_node.h │ │ │ ├── profiler_state.h │ │ │ ├── profiler_trace.h │ │ │ ├── profiler_vector_size.h │ │ │ └── profiler_vector_to_list.h │ │ ├── iterator_tracker.h │ │ ├── list │ │ ├── map │ │ ├── map.h │ │ ├── multimap.h │ │ ├── multiset.h │ │ ├── set │ │ ├── set.h │ │ ├── unordered_base.h │ │ ├── unordered_map │ │ ├── unordered_set │ │ └── vector │ │ ├── queue │ │ ├── random │ │ ├── ratio │ │ ├── regex │ │ ├── scoped_allocator │ │ ├── set │ │ ├── sstream │ │ ├── stack │ │ ├── stdexcept │ │ ├── streambuf │ │ ├── string │ │ ├── system_error │ │ ├── tgmath.h │ │ ├── thread │ │ ├── tr1 │ │ ├── array │ │ ├── bessel_function.tcc │ │ ├── beta_function.tcc │ │ ├── ccomplex │ │ ├── cctype │ │ ├── cfenv │ │ ├── cfloat │ │ ├── cinttypes │ │ ├── climits │ │ ├── cmath │ │ ├── complex │ │ ├── complex.h │ │ ├── cstdarg │ │ ├── cstdbool │ │ ├── cstdint │ │ ├── cstdio │ │ ├── cstdlib │ │ ├── ctgmath │ │ ├── ctime │ │ ├── ctype.h │ │ ├── cwchar │ │ ├── cwctype │ │ ├── ell_integral.tcc │ │ ├── exp_integral.tcc │ │ ├── fenv.h │ │ ├── float.h │ │ ├── functional │ │ ├── functional_hash.h │ │ ├── gamma.tcc │ │ ├── hashtable.h │ │ ├── hashtable_policy.h │ │ ├── hypergeometric.tcc │ │ ├── inttypes.h │ │ ├── legendre_function.tcc │ │ ├── limits.h │ │ ├── math.h │ │ ├── memory │ │ ├── modified_bessel_func.tcc │ │ ├── poly_hermite.tcc │ │ ├── poly_laguerre.tcc │ │ ├── random │ │ ├── random.h │ │ ├── random.tcc │ │ ├── regex │ │ ├── riemann_zeta.tcc │ │ ├── shared_ptr.h │ │ ├── special_function_util.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── tgmath.h │ │ ├── tuple │ │ ├── type_traits │ │ ├── unordered_map │ │ ├── unordered_map.h │ │ ├── unordered_set │ │ ├── unordered_set.h │ │ ├── utility │ │ ├── wchar.h │ │ └── wctype.h │ │ ├── tr2 │ │ ├── bool_set │ │ ├── bool_set.tcc │ │ ├── dynamic_bitset │ │ ├── ratio │ │ └── type_traits │ │ ├── tuple │ │ ├── type_traits │ │ ├── typeindex │ │ ├── typeinfo │ │ ├── unordered_map │ │ ├── unordered_set │ │ ├── utility │ │ ├── valarray │ │ ├── vector │ │ └── x86_64-redhat-linux │ │ ├── 32 │ │ ├── bits │ │ │ ├── atomic_word.h │ │ │ ├── basic_file.h │ │ │ ├── c++allocator.h │ │ │ ├── c++config.h │ │ │ ├── c++io.h │ │ │ ├── c++locale.h │ │ │ ├── cpu_defines.h │ │ │ ├── ctype_base.h │ │ │ ├── ctype_inline.h │ │ │ ├── cxxabi_tweaks.h │ │ │ ├── error_constants.h │ │ │ ├── extc++.h │ │ │ ├── gthr-default.h │ │ │ ├── gthr-posix.h │ │ │ ├── gthr-single.h │ │ │ ├── gthr.h │ │ │ ├── messages_members.h │ │ │ ├── opt_random.h │ │ │ ├── os_defines.h │ │ │ ├── stdc++.h │ │ │ ├── stdtr1c++.h │ │ │ └── time_members.h │ │ └── ext │ │ │ └── opt_random.h │ │ ├── bits │ │ ├── atomic_word.h │ │ ├── basic_file.h │ │ ├── c++allocator.h │ │ ├── c++config.h │ │ ├── c++io.h │ │ ├── c++locale.h │ │ ├── cpu_defines.h │ │ ├── ctype_base.h │ │ ├── ctype_inline.h │ │ ├── cxxabi_tweaks.h │ │ ├── error_constants.h │ │ ├── extc++.h │ │ ├── gthr-default.h │ │ ├── gthr-posix.h │ │ ├── gthr-single.h │ │ ├── gthr.h │ │ ├── messages_members.h │ │ ├── opt_random.h │ │ ├── os_defines.h │ │ ├── stdc++.h │ │ ├── stdtr1c++.h │ │ └── time_members.h │ │ └── ext │ │ └── opt_random.h │ ├── com_err.h │ ├── complex.h │ ├── cpio.h │ ├── cpufreq.h │ ├── crypt.h │ ├── ctype.h │ ├── curl │ ├── curl.h │ ├── curlbuild-64.h │ ├── curlbuild.h │ ├── curlrules.h │ ├── curlver.h │ ├── easy.h │ ├── mprintf.h │ ├── multi.h │ ├── stdcheaders.h │ └── typecheck-gcc.h │ ├── curses.h │ ├── cursesapp.h │ ├── cursesf.h │ ├── cursesm.h │ ├── cursesp.h │ ├── cursesw.h │ ├── cursslk.h │ ├── dirent.h │ ├── dlfcn.h │ ├── drm │ ├── amdgpu_drm.h │ ├── drm.h │ ├── drm_fourcc.h │ ├── drm_mode.h │ ├── drm_sarea.h │ ├── exynos_drm.h │ ├── i810_drm.h │ ├── i915_drm.h │ ├── mga_drm.h │ ├── nouveau_drm.h │ ├── qxl_drm.h │ ├── r128_drm.h │ ├── radeon_drm.h │ ├── savage_drm.h │ ├── sis_drm.h │ ├── tegra_drm.h │ ├── via_drm.h │ ├── virtgpu_drm.h │ └── vmwgfx_drm.h │ ├── e2p │ └── e2p.h │ ├── elf.h │ ├── endian.h │ ├── entities.h │ ├── envz.h │ ├── err.h │ ├── errno.h │ ├── error.h │ ├── et │ └── com_err.h │ ├── eti.h │ ├── etip.h │ ├── evdns.h │ ├── event.h │ ├── event2 │ ├── buffer.h │ ├── buffer_compat.h │ ├── bufferevent.h │ ├── bufferevent_compat.h │ ├── bufferevent_ssl.h │ ├── bufferevent_struct.h │ ├── dns.h │ ├── dns_compat.h │ ├── dns_struct.h │ ├── event-config.h │ ├── event.h │ ├── event_compat.h │ ├── event_struct.h │ ├── http.h │ ├── http_compat.h │ ├── http_struct.h │ ├── keyvalq_struct.h │ ├── listener.h │ ├── rpc.h │ ├── rpc_compat.h │ ├── rpc_struct.h │ ├── tag.h │ ├── tag_compat.h │ ├── thread.h │ └── util.h │ ├── evhttp.h │ ├── evrpc.h │ ├── evutil.h │ ├── execinfo.h │ ├── expat.h │ ├── expat_external.h │ ├── ext2fs │ ├── bitops.h │ ├── ext2_err.h │ ├── ext2_ext_attr.h │ ├── ext2_fs.h │ ├── ext2_io.h │ ├── ext2_types-x86_64.h │ ├── ext2_types.h │ ├── ext2fs.h │ ├── ext3_extents.h │ ├── qcow2.h │ └── tdb.h │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── fmtmsg.h │ ├── fnmatch.h │ ├── fontconfig │ ├── fcfreetype.h │ ├── fcprivate.h │ └── fontconfig.h │ ├── form.h │ ├── fpu_control.h │ ├── freetype │ ├── config │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ └── ftstdlib.h │ ├── freetype.h │ ├── ftadvanc.h │ ├── ftautoh.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftbitmap.h │ ├── ftbzip2.h │ ├── ftcache.h │ ├── ftcffdrv.h │ ├── ftchapters.h │ ├── ftcid.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftfntfmt.h │ ├── ftgasp.h │ ├── ftglyph.h │ ├── ftgxval.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlcdfil.h │ ├── ftlist.h │ ├── ftlzw.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmodapi.h │ ├── ftmoderr.h │ ├── ftotval.h │ ├── ftoutln.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroke.h │ ├── ftsynth.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── ftttdrv.h │ ├── fttypes.h │ ├── ftwinfnt.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ ├── tttags.h │ └── ttunpat.h │ ├── freetype2 │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig-64.h │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ └── ftstdlib.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftautoh.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftcffdrv.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftpcfdrv.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── ftttdrv.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ ├── tttags.h │ │ └── ttunpat.h │ └── ft2build.h │ ├── fstab.h │ ├── ft2build.h │ ├── fts.h │ ├── ftw.h │ ├── gconv.h │ ├── gcrypt-module.h │ ├── gcrypt.h │ ├── gd.h │ ├── gd_io.h │ ├── gdcache.h │ ├── gdfontg.h │ ├── gdfontl.h │ ├── gdfontmb.h │ ├── gdfonts.h │ ├── gdfontt.h │ ├── gdfx.h │ ├── getopt.h │ ├── gettext-po.h │ ├── gio-unix-2.0 │ └── gio │ │ ├── gdesktopappinfo.h │ │ ├── gfiledescriptorbased.h │ │ ├── gunixconnection.h │ │ ├── gunixcredentialsmessage.h │ │ ├── gunixfdlist.h │ │ ├── gunixfdmessage.h │ │ ├── gunixinputstream.h │ │ ├── gunixmounts.h │ │ ├── gunixoutputstream.h │ │ └── gunixsocketaddress.h │ ├── glib-2.0 │ ├── gio │ │ ├── gaction.h │ │ ├── gactiongroup.h │ │ ├── gactiongroupexporter.h │ │ ├── gactionmap.h │ │ ├── gappinfo.h │ │ ├── gapplication.h │ │ ├── gapplicationcommandline.h │ │ ├── gasyncinitable.h │ │ ├── gasyncresult.h │ │ ├── gbufferedinputstream.h │ │ ├── gbufferedoutputstream.h │ │ ├── gbytesicon.h │ │ ├── gcancellable.h │ │ ├── gcharsetconverter.h │ │ ├── gcontenttype.h │ │ ├── gconverter.h │ │ ├── gconverterinputstream.h │ │ ├── gconverteroutputstream.h │ │ ├── gcredentials.h │ │ ├── gdatagrambased.h │ │ ├── gdatainputstream.h │ │ ├── gdataoutputstream.h │ │ ├── gdbusactiongroup.h │ │ ├── gdbusaddress.h │ │ ├── gdbusauthobserver.h │ │ ├── gdbusconnection.h │ │ ├── gdbuserror.h │ │ ├── gdbusinterface.h │ │ ├── gdbusinterfaceskeleton.h │ │ ├── gdbusintrospection.h │ │ ├── gdbusmenumodel.h │ │ ├── gdbusmessage.h │ │ ├── gdbusmethodinvocation.h │ │ ├── gdbusnameowning.h │ │ ├── gdbusnamewatching.h │ │ ├── gdbusobject.h │ │ ├── gdbusobjectmanager.h │ │ ├── gdbusobjectmanagerclient.h │ │ ├── gdbusobjectmanagerserver.h │ │ ├── gdbusobjectproxy.h │ │ ├── gdbusobjectskeleton.h │ │ ├── gdbusproxy.h │ │ ├── gdbusserver.h │ │ ├── gdbusutils.h │ │ ├── gdrive.h │ │ ├── gdtlsclientconnection.h │ │ ├── gdtlsconnection.h │ │ ├── gdtlsserverconnection.h │ │ ├── gemblem.h │ │ ├── gemblemedicon.h │ │ ├── gfile.h │ │ ├── gfileattribute.h │ │ ├── gfileenumerator.h │ │ ├── gfileicon.h │ │ ├── gfileinfo.h │ │ ├── gfileinputstream.h │ │ ├── gfileiostream.h │ │ ├── gfilemonitor.h │ │ ├── gfilenamecompleter.h │ │ ├── gfileoutputstream.h │ │ ├── gfilterinputstream.h │ │ ├── gfilteroutputstream.h │ │ ├── gicon.h │ │ ├── ginetaddress.h │ │ ├── ginetaddressmask.h │ │ ├── ginetsocketaddress.h │ │ ├── ginitable.h │ │ ├── ginputstream.h │ │ ├── gio-autocleanups.h │ │ ├── gio.h │ │ ├── gioenums.h │ │ ├── gioenumtypes.h │ │ ├── gioerror.h │ │ ├── giomodule.h │ │ ├── gioscheduler.h │ │ ├── giostream.h │ │ ├── giotypes.h │ │ ├── glistmodel.h │ │ ├── gliststore.h │ │ ├── gloadableicon.h │ │ ├── gmemoryinputstream.h │ │ ├── gmemoryoutputstream.h │ │ ├── gmenu.h │ │ ├── gmenuexporter.h │ │ ├── gmenumodel.h │ │ ├── gmount.h │ │ ├── gmountoperation.h │ │ ├── gnativevolumemonitor.h │ │ ├── gnetworkaddress.h │ │ ├── gnetworking.h │ │ ├── gnetworkmonitor.h │ │ ├── gnetworkservice.h │ │ ├── gnotification.h │ │ ├── goutputstream.h │ │ ├── gpermission.h │ │ ├── gpollableinputstream.h │ │ ├── gpollableoutputstream.h │ │ ├── gpollableutils.h │ │ ├── gpropertyaction.h │ │ ├── gproxy.h │ │ ├── gproxyaddress.h │ │ ├── gproxyaddressenumerator.h │ │ ├── gproxyresolver.h │ │ ├── gremoteactiongroup.h │ │ ├── gresolver.h │ │ ├── gresource.h │ │ ├── gseekable.h │ │ ├── gsettings.h │ │ ├── gsettingsbackend.h │ │ ├── gsettingsschema.h │ │ ├── gsimpleaction.h │ │ ├── gsimpleactiongroup.h │ │ ├── gsimpleasyncresult.h │ │ ├── gsimpleiostream.h │ │ ├── gsimplepermission.h │ │ ├── gsimpleproxyresolver.h │ │ ├── gsocket.h │ │ ├── gsocketaddress.h │ │ ├── gsocketaddressenumerator.h │ │ ├── gsocketclient.h │ │ ├── gsocketconnectable.h │ │ ├── gsocketconnection.h │ │ ├── gsocketcontrolmessage.h │ │ ├── gsocketlistener.h │ │ ├── gsocketservice.h │ │ ├── gsrvtarget.h │ │ ├── gsubprocess.h │ │ ├── gsubprocesslauncher.h │ │ ├── gtask.h │ │ ├── gtcpconnection.h │ │ ├── gtcpwrapperconnection.h │ │ ├── gtestdbus.h │ │ ├── gthemedicon.h │ │ ├── gthreadedsocketservice.h │ │ ├── gtlsbackend.h │ │ ├── gtlscertificate.h │ │ ├── gtlsclientconnection.h │ │ ├── gtlsconnection.h │ │ ├── gtlsdatabase.h │ │ ├── gtlsfiledatabase.h │ │ ├── gtlsinteraction.h │ │ ├── gtlspassword.h │ │ ├── gtlsserverconnection.h │ │ ├── gvfs.h │ │ ├── gvolume.h │ │ ├── gvolumemonitor.h │ │ ├── gzlibcompressor.h │ │ └── gzlibdecompressor.h │ ├── glib-object.h │ ├── glib-unix.h │ ├── glib.h │ ├── glib │ │ ├── deprecated │ │ │ ├── gallocator.h │ │ │ ├── gcache.h │ │ │ ├── gcompletion.h │ │ │ ├── gmain.h │ │ │ ├── grel.h │ │ │ └── gthread.h │ │ ├── galloca.h │ │ ├── garray.h │ │ ├── gasyncqueue.h │ │ ├── gatomic.h │ │ ├── gbacktrace.h │ │ ├── gbase64.h │ │ ├── gbitlock.h │ │ ├── gbookmarkfile.h │ │ ├── gbytes.h │ │ ├── gcharset.h │ │ ├── gchecksum.h │ │ ├── gconvert.h │ │ ├── gdataset.h │ │ ├── gdate.h │ │ ├── gdatetime.h │ │ ├── gdir.h │ │ ├── genviron.h │ │ ├── gerror.h │ │ ├── gfileutils.h │ │ ├── ggettext.h │ │ ├── ghash.h │ │ ├── ghmac.h │ │ ├── ghook.h │ │ ├── ghostutils.h │ │ ├── gi18n-lib.h │ │ ├── gi18n.h │ │ ├── giochannel.h │ │ ├── gkeyfile.h │ │ ├── glib-autocleanups.h │ │ ├── glist.h │ │ ├── gmacros.h │ │ ├── gmain.h │ │ ├── gmappedfile.h │ │ ├── gmarkup.h │ │ ├── gmem.h │ │ ├── gmessages.h │ │ ├── gnode.h │ │ ├── goption.h │ │ ├── gpattern.h │ │ ├── gpoll.h │ │ ├── gprimes.h │ │ ├── gprintf.h │ │ ├── gqsort.h │ │ ├── gquark.h │ │ ├── gqueue.h │ │ ├── grand.h │ │ ├── gregex.h │ │ ├── gscanner.h │ │ ├── gsequence.h │ │ ├── gshell.h │ │ ├── gslice.h │ │ ├── gslist.h │ │ ├── gspawn.h │ │ ├── gstdio.h │ │ ├── gstrfuncs.h │ │ ├── gstring.h │ │ ├── gstringchunk.h │ │ ├── gtestutils.h │ │ ├── gthread.h │ │ ├── gthreadpool.h │ │ ├── gtimer.h │ │ ├── gtimezone.h │ │ ├── gtrashstack.h │ │ ├── gtree.h │ │ ├── gtypes.h │ │ ├── gunicode.h │ │ ├── gurifuncs.h │ │ ├── gutils.h │ │ ├── guuid.h │ │ ├── gvariant.h │ │ ├── gvarianttype.h │ │ ├── gversion.h │ │ ├── gversionmacros.h │ │ └── gwin32.h │ ├── gmodule.h │ └── gobject │ │ ├── gbinding.h │ │ ├── gboxed.h │ │ ├── gclosure.h │ │ ├── genums.h │ │ ├── glib-types.h │ │ ├── gmarshal.h │ │ ├── gobject-autocleanups.h │ │ ├── gobject.h │ │ ├── gobjectnotifyqueue.c │ │ ├── gparam.h │ │ ├── gparamspecs.h │ │ ├── gsignal.h │ │ ├── gsourceclosure.h │ │ ├── gtype.h │ │ ├── gtypemodule.h │ │ ├── gtypeplugin.h │ │ ├── gvalue.h │ │ ├── gvaluearray.h │ │ ├── gvaluecollector.h │ │ └── gvaluetypes.h │ ├── glob.h │ ├── gmp-mparam-x86_64.h │ ├── gmp-mparam.h │ ├── gmp-x86_64.h │ ├── gmp.h │ ├── gmpxx.h │ ├── gnu-versions.h │ ├── gnu │ ├── lib-names.h │ ├── libc-version.h │ ├── stubs-64.h │ └── stubs.h │ ├── gpg-error.h │ ├── grp.h │ ├── gshadow.h │ ├── gssapi.h │ ├── gssapi │ ├── gssapi.h │ ├── gssapi_ext.h │ ├── gssapi_generic.h │ ├── gssapi_krb5.h │ └── mechglue.h │ ├── gssrpc │ ├── auth.h │ ├── auth_gss.h │ ├── auth_gssapi.h │ ├── auth_unix.h │ ├── clnt.h │ ├── netdb.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rename.h │ ├── rpc.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h │ ├── iconv.h │ ├── idn-free.h │ ├── idn-int.h │ ├── idna.h │ ├── ieee754.h │ ├── ifaddrs.h │ ├── imap │ ├── c-client.h │ ├── dummy.h │ ├── env.h │ ├── env_unix.h │ ├── fdstring.h │ ├── flockcyg.h │ ├── flocksim.h │ ├── flstring.h │ ├── fs.h │ ├── ftl.h │ ├── imap4r1.h │ ├── linkage.c │ ├── linkage.h │ ├── mail.h │ ├── misc.h │ ├── netmsg.h │ ├── newsrc.h │ ├── nl.h │ ├── nntp.h │ ├── os_a32.h │ ├── os_a41.h │ ├── os_a52.h │ ├── os_aix.h │ ├── os_aos.h │ ├── os_art.h │ ├── os_asv.h │ ├── os_aux.h │ ├── os_bsd.h │ ├── os_bsf.h │ ├── os_bsi.h │ ├── os_cvx.h │ ├── os_cyg.h │ ├── os_d-g.h │ ├── os_do4.h │ ├── os_drs.h │ ├── os_dyn.h │ ├── os_hpp.h │ ├── os_isc.h │ ├── os_lnx.h │ ├── os_lyn.h │ ├── os_mct.h │ ├── os_mnt.h │ ├── os_nto.h │ ├── os_nxt.h │ ├── os_os4.h │ ├── os_osf.h │ ├── os_osx.h │ ├── os_ptx.h │ ├── os_pyr.h │ ├── os_qnx.h │ ├── os_s40.h │ ├── os_sc5.h │ ├── os_sco.h │ ├── os_sgi.h │ ├── os_shp.h │ ├── os_slx.h │ ├── os_soln.h │ ├── os_solo.h │ ├── os_sos.h │ ├── os_sua.h │ ├── os_sun.h │ ├── os_sv2.h │ ├── os_sv4.h │ ├── os_ult.h │ ├── os_vu2.h │ ├── osdep.h │ ├── pseudo.h │ ├── rfc822.h │ ├── shortsym.h │ ├── smtp.h │ ├── sslio.h │ ├── tcp.h │ ├── tcp_unix.h │ ├── unix.h │ ├── utf8.h │ └── utf8aux.h │ ├── inttypes.h │ ├── jconfig.h │ ├── jerror.h │ ├── jmorecfg.h │ ├── jpeglib.h │ ├── kadm5 │ ├── admin.h │ ├── chpass_util_strings.h │ └── kadm_err.h │ ├── kdb.h │ ├── keyutils.h │ ├── krad.h │ ├── krb5.h │ ├── krb5 │ ├── ccselect_plugin.h │ ├── certauth_plugin.h │ ├── clpreauth_plugin.h │ ├── hostrealm_plugin.h │ ├── kadm5_hook_plugin.h │ ├── kdcpolicy_plugin.h │ ├── kdcpreauth_plugin.h │ ├── krb5.h │ ├── localauth_plugin.h │ ├── locate_plugin.h │ ├── plugin.h │ ├── preauth_plugin.h │ └── pwqual_plugin.h │ ├── langinfo.h │ ├── lastlog.h │ ├── layout │ ├── LEFontInstance.h │ ├── LEGlyphFilter.h │ ├── LEGlyphStorage.h │ ├── LEInsertionList.h │ ├── LELanguages.h │ ├── LEScripts.h │ ├── LESwaps.h │ ├── LETableReference.h │ ├── LETypes.h │ ├── LayoutEngine.h │ ├── ParagraphLayout.h │ ├── RunArrays.h │ ├── loengine.h │ ├── playout.h │ └── plruns.h │ ├── libaio.h │ ├── libexslt │ ├── exslt.h │ ├── exsltconfig.h │ └── exsltexports.h │ ├── libgen.h │ ├── libintl.h │ ├── libio.h │ ├── libpng15 │ ├── png.h │ ├── pngconf.h │ └── pnglibconf.h │ ├── libxml2 │ └── libxml │ │ ├── DOCBparser.h │ │ ├── HTMLparser.h │ │ ├── HTMLtree.h │ │ ├── SAX.h │ │ ├── SAX2.h │ │ ├── c14n.h │ │ ├── catalog.h │ │ ├── chvalid.h │ │ ├── debugXML.h │ │ ├── dict.h │ │ ├── encoding.h │ │ ├── entities.h │ │ ├── globals.h │ │ ├── hash.h │ │ ├── list.h │ │ ├── nanoftp.h │ │ ├── nanohttp.h │ │ ├── parser.h │ │ ├── parserInternals.h │ │ ├── pattern.h │ │ ├── relaxng.h │ │ ├── schemasInternals.h │ │ ├── schematron.h │ │ ├── threads.h │ │ ├── tree.h │ │ ├── uri.h │ │ ├── valid.h │ │ ├── xinclude.h │ │ ├── xlink.h │ │ ├── xmlIO.h │ │ ├── xmlautomata.h │ │ ├── xmlerror.h │ │ ├── xmlexports.h │ │ ├── xmlmemory.h │ │ ├── xmlmodule.h │ │ ├── xmlreader.h │ │ ├── xmlregexp.h │ │ ├── xmlsave.h │ │ ├── xmlschemas.h │ │ ├── xmlschemastypes.h │ │ ├── xmlstring.h │ │ ├── xmlunicode.h │ │ ├── xmlversion.h │ │ ├── xmlwriter.h │ │ ├── xpath.h │ │ ├── xpathInternals.h │ │ └── xpointer.h │ ├── libxslt │ ├── attributes.h │ ├── documents.h │ ├── extensions.h │ ├── extra.h │ ├── functions.h │ ├── imports.h │ ├── keys.h │ ├── namespaces.h │ ├── numbersInternals.h │ ├── pattern.h │ ├── preproc.h │ ├── security.h │ ├── templates.h │ ├── transform.h │ ├── variables.h │ ├── xslt.h │ ├── xsltInternals.h │ ├── xsltconfig.h │ ├── xsltexports.h │ ├── xsltlocale.h │ └── xsltutils.h │ ├── limits.h │ ├── link.h │ ├── linux │ ├── a.out.h │ ├── acct.h │ ├── adb.h │ ├── adfs_fs.h │ ├── affs_hardblocks.h │ ├── agpgart.h │ ├── aio_abi.h │ ├── apm_bios.h │ ├── arcfb.h │ ├── atalk.h │ ├── atm.h │ ├── atm_eni.h │ ├── atm_he.h │ ├── atm_idt77105.h │ ├── atm_nicstar.h │ ├── atm_tcp.h │ ├── atm_zatm.h │ ├── atmapi.h │ ├── atmarp.h │ ├── atmbr2684.h │ ├── atmclip.h │ ├── atmdev.h │ ├── atmioc.h │ ├── atmlec.h │ ├── atmmpc.h │ ├── atmppp.h │ ├── atmsap.h │ ├── atmsvc.h │ ├── audit.h │ ├── auto_fs.h │ ├── auto_fs4.h │ ├── auxvec.h │ ├── ax25.h │ ├── b1lli.h │ ├── baycom.h │ ├── bfs_fs.h │ ├── binfmts.h │ ├── blkpg.h │ ├── blktrace_api.h │ ├── bpqether.h │ ├── bsg.h │ ├── bt-bmc.h │ ├── btrfs.h │ ├── byteorder │ │ ├── big_endian.h │ │ └── little_endian.h │ ├── caif │ │ ├── caif_socket.h │ │ └── if_caif.h │ ├── can.h │ ├── can │ │ ├── bcm.h │ │ ├── error.h │ │ ├── gw.h │ │ ├── netlink.h │ │ └── raw.h │ ├── capability.h │ ├── capi.h │ ├── cciss_defs.h │ ├── cciss_ioctl.h │ ├── cdrom.h │ ├── cgroupstats.h │ ├── chio.h │ ├── cm4000_cs.h │ ├── cn_proc.h │ ├── coda.h │ ├── coda_psdev.h │ ├── coff.h │ ├── connector.h │ ├── const.h │ ├── cramfs_fs.h │ ├── cuda.h │ ├── cyclades.h │ ├── cycx_cfm.h │ ├── dcbnl.h │ ├── dccp.h │ ├── devlink.h │ ├── dlm.h │ ├── dlm_device.h │ ├── dlm_netlink.h │ ├── dlm_plock.h │ ├── dlmconstants.h │ ├── dm-ioctl.h │ ├── dm-log-userspace.h │ ├── dn.h │ ├── dqblk_xfs.h │ ├── dvb │ │ ├── audio.h │ │ ├── ca.h │ │ ├── dmx.h │ │ ├── frontend.h │ │ ├── net.h │ │ ├── osd.h │ │ ├── version.h │ │ └── video.h │ ├── edd.h │ ├── efs_fs_sb.h │ ├── elf-em.h │ ├── elf-fdpic.h │ ├── elf.h │ ├── elfcore.h │ ├── errno.h │ ├── errqueue.h │ ├── ethtool.h │ ├── eventpoll.h │ ├── fadvise.h │ ├── falloc.h │ ├── fanotify.h │ ├── fb.h │ ├── fcntl.h │ ├── fd.h │ ├── fdreg.h │ ├── fib_rules.h │ ├── fiemap.h │ ├── filter.h │ ├── firewire-cdev.h │ ├── firewire-constants.h │ ├── flat.h │ ├── fou.h │ ├── fs.h │ ├── fsl_hypervisor.h │ ├── fuse.h │ ├── futex.h │ ├── gameport.h │ ├── gen_stats.h │ ├── genetlink.h │ ├── gfs2_ondisk.h │ ├── gigaset_dev.h │ ├── hdlc.h │ ├── hdlc │ │ └── ioctl.h │ ├── hdlcdrv.h │ ├── hdreg.h │ ├── hid.h │ ├── hiddev.h │ ├── hidraw.h │ ├── hpet.h │ ├── hsi │ │ └── hsi_char.h │ ├── hw_breakpoint.h │ ├── hyperv.h │ ├── hysdn_if.h │ ├── i2c-dev.h │ ├── i2c.h │ ├── i2o-dev.h │ ├── i8k.h │ ├── icmp.h │ ├── icmpv6.h │ ├── if.h │ ├── if_addr.h │ ├── if_addrlabel.h │ ├── if_alg.h │ ├── if_arcnet.h │ ├── if_arp.h │ ├── if_bonding.h │ ├── if_bridge.h │ ├── if_cablemodem.h │ ├── if_eql.h │ ├── if_ether.h │ ├── if_fc.h │ ├── if_fddi.h │ ├── if_frad.h │ ├── if_hippi.h │ ├── if_infiniband.h │ ├── if_link.h │ ├── if_ltalk.h │ ├── if_macsec.h │ ├── if_packet.h │ ├── if_phonet.h │ ├── if_plip.h │ ├── if_ppp.h │ ├── if_pppol2tp.h │ ├── if_pppox.h │ ├── if_slip.h │ ├── if_team.h │ ├── if_tun.h │ ├── if_tunnel.h │ ├── if_vlan.h │ ├── if_x25.h │ ├── igmp.h │ ├── in.h │ ├── in6.h │ ├── in_route.h │ ├── inet_diag.h │ ├── inotify.h │ ├── input.h │ ├── ioctl.h │ ├── ip.h │ ├── ip6_tunnel.h │ ├── ip_vs.h │ ├── ipc.h │ ├── ipmi.h │ ├── ipmi_msgdefs.h │ ├── ipsec.h │ ├── ipv6.h │ ├── ipv6_route.h │ ├── ipx.h │ ├── irda.h │ ├── irqnr.h │ ├── isdn.h │ ├── isdn │ │ └── capicmd.h │ ├── isdn_divertif.h │ ├── isdn_ppp.h │ ├── isdnif.h │ ├── iso_fs.h │ ├── ivtv.h │ ├── ivtvfb.h │ ├── ixjuser.h │ ├── jffs2.h │ ├── joystick.h │ ├── kd.h │ ├── kdev_t.h │ ├── kernel-page-flags.h │ ├── kernel.h │ ├── kernelcapi.h │ ├── kexec.h │ ├── keyboard.h │ ├── keyctl.h │ ├── kvm.h │ ├── kvm_para.h │ ├── l2tp.h │ ├── libc-compat.h │ ├── limits.h │ ├── llc.h │ ├── loop.h │ ├── lp.h │ ├── lwtunnel.h │ ├── magic.h │ ├── major.h │ ├── map_to_7segment.h │ ├── matroxfb.h │ ├── mdio.h │ ├── media.h │ ├── mei.h │ ├── memfd.h │ ├── mempolicy.h │ ├── meye.h │ ├── mii.h │ ├── minix_fs.h │ ├── mman.h │ ├── mmc │ │ └── ioctl.h │ ├── mmtimer.h │ ├── mpls.h │ ├── mqueue.h │ ├── mroute.h │ ├── mroute6.h │ ├── msdos_fs.h │ ├── msg.h │ ├── mtio.h │ ├── n_r3964.h │ ├── nbd.h │ ├── ncp.h │ ├── ncp_fs.h │ ├── ncp_mount.h │ ├── ncp_no.h │ ├── ndctl.h │ ├── neighbour.h │ ├── net.h │ ├── net_dropmon.h │ ├── net_namespace.h │ ├── net_tstamp.h │ ├── netconf.h │ ├── netdevice.h │ ├── netfilter.h │ ├── netfilter │ │ ├── ipset │ │ │ ├── ip_set.h │ │ │ ├── ip_set_bitmap.h │ │ │ ├── ip_set_hash.h │ │ │ └── ip_set_list.h │ │ ├── nf_conntrack_common.h │ │ ├── nf_conntrack_ftp.h │ │ ├── nf_conntrack_sctp.h │ │ ├── nf_conntrack_tcp.h │ │ ├── nf_conntrack_tuple_common.h │ │ ├── nf_nat.h │ │ ├── nf_tables.h │ │ ├── nf_tables_compat.h │ │ ├── nfnetlink.h │ │ ├── nfnetlink_acct.h │ │ ├── nfnetlink_compat.h │ │ ├── nfnetlink_conntrack.h │ │ ├── nfnetlink_cthelper.h │ │ ├── nfnetlink_cttimeout.h │ │ ├── nfnetlink_log.h │ │ ├── nfnetlink_queue.h │ │ ├── x_tables.h │ │ ├── xt_AUDIT.h │ │ ├── xt_CHECKSUM.h │ │ ├── xt_CLASSIFY.h │ │ ├── xt_CONNSECMARK.h │ │ ├── xt_CT.h │ │ ├── xt_HMARK.h │ │ ├── xt_IDLETIMER.h │ │ ├── xt_LED.h │ │ ├── xt_LOG.h │ │ ├── xt_MARK.h │ │ ├── xt_NFLOG.h │ │ ├── xt_NFQUEUE.h │ │ ├── xt_RATEEST.h │ │ ├── xt_SECMARK.h │ │ ├── xt_TCPOPTSTRIP.h │ │ ├── xt_TEE.h │ │ ├── xt_TPROXY.h │ │ ├── xt_addrtype.h │ │ ├── xt_bpf.h │ │ ├── xt_cgroup.h │ │ ├── xt_cluster.h │ │ ├── xt_comment.h │ │ ├── xt_connbytes.h │ │ ├── xt_connlabel.h │ │ ├── xt_connlimit.h │ │ ├── xt_connmark.h │ │ ├── xt_conntrack.h │ │ ├── xt_cpu.h │ │ ├── xt_dccp.h │ │ ├── xt_devgroup.h │ │ ├── xt_dscp.h │ │ ├── xt_ecn.h │ │ ├── xt_esp.h │ │ ├── xt_hashlimit.h │ │ ├── xt_helper.h │ │ ├── xt_iprange.h │ │ ├── xt_ipvs.h │ │ ├── xt_length.h │ │ ├── xt_limit.h │ │ ├── xt_mac.h │ │ ├── xt_multiport.h │ │ ├── xt_nfacct.h │ │ ├── xt_osf.h │ │ ├── xt_owner.h │ │ ├── xt_physdev.h │ │ ├── xt_pkttype.h │ │ ├── xt_policy.h │ │ ├── xt_quota.h │ │ ├── xt_realm.h │ │ ├── xt_recent.h │ │ ├── xt_rpfilter.h │ │ ├── xt_sctp.h │ │ ├── xt_set.h │ │ ├── xt_socket.h │ │ ├── xt_state.h │ │ ├── xt_statistic.h │ │ ├── xt_string.h │ │ ├── xt_tcpmss.h │ │ ├── xt_tcpudp.h │ │ ├── xt_time.h │ │ └── xt_u32.h │ ├── netfilter_arp.h │ ├── netfilter_arp │ │ ├── arp_tables.h │ │ └── arpt_mangle.h │ ├── netfilter_bridge.h │ ├── netfilter_bridge │ │ ├── ebt_802_3.h │ │ ├── ebt_among.h │ │ ├── ebt_arp.h │ │ ├── ebt_arpreply.h │ │ ├── ebt_ip.h │ │ ├── ebt_ip6.h │ │ ├── ebt_limit.h │ │ ├── ebt_log.h │ │ ├── ebt_mark_m.h │ │ ├── ebt_mark_t.h │ │ ├── ebt_nat.h │ │ ├── ebt_nflog.h │ │ ├── ebt_pkttype.h │ │ ├── ebt_redirect.h │ │ ├── ebt_stp.h │ │ ├── ebt_ulog.h │ │ ├── ebt_vlan.h │ │ └── ebtables.h │ ├── netfilter_decnet.h │ ├── netfilter_ipv4.h │ ├── netfilter_ipv4 │ │ ├── ip_tables.h │ │ ├── ipt_CLUSTERIP.h │ │ ├── ipt_ECN.h │ │ ├── ipt_LOG.h │ │ ├── ipt_REJECT.h │ │ ├── ipt_ULOG.h │ │ ├── ipt_ah.h │ │ └── ipt_ttl.h │ ├── netfilter_ipv6.h │ ├── netfilter_ipv6 │ │ ├── ip6_tables.h │ │ ├── ip6t_HL.h │ │ ├── ip6t_LOG.h │ │ ├── ip6t_NPT.h │ │ ├── ip6t_REJECT.h │ │ ├── ip6t_ah.h │ │ ├── ip6t_frag.h │ │ ├── ip6t_ipv6header.h │ │ ├── ip6t_mh.h │ │ ├── ip6t_opts.h │ │ └── ip6t_rt.h │ ├── netlink.h │ ├── netlink_diag.h │ ├── netrom.h │ ├── nfc.h │ ├── nfs.h │ ├── nfs2.h │ ├── nfs3.h │ ├── nfs4.h │ ├── nfs4_mount.h │ ├── nfs_fs.h │ ├── nfs_idmap.h │ ├── nfs_mount.h │ ├── nfsacl.h │ ├── nfsd │ │ ├── cld.h │ │ ├── debug.h │ │ ├── export.h │ │ ├── nfsfh.h │ │ └── stats.h │ ├── nl80211.h │ ├── nubus.h │ ├── nvme_ioctl.h │ ├── nvram.h │ ├── omap3isp.h │ ├── omapfb.h │ ├── oom.h │ ├── openvswitch.h │ ├── packet_diag.h │ ├── param.h │ ├── parport.h │ ├── patchkey.h │ ├── pci.h │ ├── pci_regs.h │ ├── perf_event.h │ ├── personality.h │ ├── pfkeyv2.h │ ├── pg.h │ ├── phantom.h │ ├── phonet.h │ ├── pkt_cls.h │ ├── pkt_sched.h │ ├── pktcdvd.h │ ├── pmu.h │ ├── poll.h │ ├── posix_types.h │ ├── ppdev.h │ ├── ppp-comp.h │ ├── ppp-ioctl.h │ ├── ppp_defs.h │ ├── pps.h │ ├── prctl.h │ ├── ptp_clock.h │ ├── ptrace.h │ ├── qnx4_fs.h │ ├── qnxtypes.h │ ├── quota.h │ ├── radeonfb.h │ ├── raid │ │ ├── md_p.h │ │ └── md_u.h │ ├── random.h │ ├── raw.h │ ├── rds.h │ ├── reboot.h │ ├── reiserfs_fs.h │ ├── reiserfs_xattr.h │ ├── resource.h │ ├── rfkill.h │ ├── romfs_fs.h │ ├── rose.h │ ├── route.h │ ├── rtc.h │ ├── rtnetlink.h │ ├── scc.h │ ├── sched.h │ ├── screen_info.h │ ├── sctp.h │ ├── sdla.h │ ├── seccomp.h │ ├── securebits.h │ ├── selinux_netlink.h │ ├── sem.h │ ├── serial.h │ ├── serial_core.h │ ├── serial_reg.h │ ├── serio.h │ ├── shm.h │ ├── signal.h │ ├── signalfd.h │ ├── snmp.h │ ├── sock_diag.h │ ├── socket.h │ ├── sockios.h │ ├── som.h │ ├── sonet.h │ ├── sonypi.h │ ├── sound.h │ ├── soundcard.h │ ├── spi │ │ └── spidev.h │ ├── stat.h │ ├── stddef.h │ ├── string.h │ ├── sunrpc │ │ └── debug.h │ ├── suspend_ioctls.h │ ├── swab.h │ ├── synclink.h │ ├── sysctl.h │ ├── sysinfo.h │ ├── target_core_user.h │ ├── taskstats.h │ ├── tc_act │ │ ├── tc_csum.h │ │ ├── tc_gact.h │ │ ├── tc_ipt.h │ │ ├── tc_mirred.h │ │ ├── tc_nat.h │ │ ├── tc_pedit.h │ │ └── tc_skbedit.h │ ├── tc_ematch │ │ ├── tc_em_cmp.h │ │ ├── tc_em_meta.h │ │ ├── tc_em_nbyte.h │ │ └── tc_em_text.h │ ├── tcp.h │ ├── tcp_metrics.h │ ├── telephony.h │ ├── termios.h │ ├── time.h │ ├── times.h │ ├── timex.h │ ├── tiocl.h │ ├── tipc.h │ ├── tipc_config.h │ ├── toshiba.h │ ├── tty.h │ ├── tty_flags.h │ ├── types.h │ ├── udf_fs_i.h │ ├── udp.h │ ├── uhid.h │ ├── uinput.h │ ├── uio.h │ ├── ultrasound.h │ ├── un.h │ ├── unistd.h │ ├── unix_diag.h │ ├── usb │ │ ├── audio.h │ │ ├── cdc-wdm.h │ │ ├── cdc.h │ │ ├── ch11.h │ │ ├── ch9.h │ │ ├── functionfs.h │ │ ├── g_printer.h │ │ ├── gadgetfs.h │ │ ├── midi.h │ │ ├── tmc.h │ │ └── video.h │ ├── usbdevice_fs.h │ ├── userfaultfd.h │ ├── utime.h │ ├── utsname.h │ ├── uuid.h │ ├── uvcvideo.h │ ├── v4l2-common.h │ ├── v4l2-controls.h │ ├── v4l2-dv-timings.h │ ├── v4l2-mediabus.h │ ├── v4l2-subdev.h │ ├── version.h │ ├── veth.h │ ├── vfio.h │ ├── vhost.h │ ├── videodev2.h │ ├── virtio_9p.h │ ├── virtio_balloon.h │ ├── virtio_blk.h │ ├── virtio_config.h │ ├── virtio_console.h │ ├── virtio_gpu.h │ ├── virtio_ids.h │ ├── virtio_input.h │ ├── virtio_net.h │ ├── virtio_pci.h │ ├── virtio_ring.h │ ├── virtio_rng.h │ ├── virtio_scsi.h │ ├── virtio_types.h │ ├── virtio_vsock.h │ ├── vm_sockets.h │ ├── vt.h │ ├── vtpm_proxy.h │ ├── wait.h │ ├── wanrouter.h │ ├── watchdog.h │ ├── wimax.h │ ├── wimax │ │ └── i2400m.h │ ├── wireless.h │ ├── x25.h │ ├── xattr.h │ └── xfrm.h │ ├── locale.h │ ├── lzma.h │ ├── lzma │ ├── base.h │ ├── bcj.h │ ├── block.h │ ├── check.h │ ├── container.h │ ├── delta.h │ ├── filter.h │ ├── hardware.h │ ├── index.h │ ├── index_hash.h │ ├── lzma12.h │ ├── stream_flags.h │ ├── version.h │ └── vli.h │ ├── malloc.h │ ├── math.h │ ├── mcheck.h │ ├── memory.h │ ├── menu.h │ ├── misc │ └── cxl.h │ ├── mntent.h │ ├── monetary.h │ ├── mqueue.h │ ├── mtd │ ├── inftl-user.h │ ├── mtd-abi.h │ ├── mtd-user.h │ ├── nftl-user.h │ └── ubi-user.h │ ├── mysql │ ├── client_authentication.h │ ├── client_plugin.h │ ├── client_plugin.h.pp │ ├── com_data.h │ ├── get_password.h │ ├── group_replication_priv.h │ ├── innodb_priv.h │ ├── mysql_lex_string.h │ ├── plugin.h │ ├── plugin_audit.h │ ├── plugin_audit.h.pp │ ├── plugin_auth.h │ ├── plugin_auth.h.pp │ ├── plugin_auth_common.h │ ├── plugin_ftparser.h │ ├── plugin_ftparser.h.pp │ ├── plugin_group_replication.h │ ├── plugin_keyring.h │ ├── plugin_keyring.h.pp │ ├── plugin_trace.h │ ├── plugin_validate_password.h │ ├── psi │ │ ├── mysql_file.h │ │ ├── mysql_idle.h │ │ ├── mysql_mdl.h │ │ ├── mysql_memory.h │ │ ├── mysql_ps.h │ │ ├── mysql_socket.h │ │ ├── mysql_sp.h │ │ ├── mysql_stage.h │ │ ├── mysql_statement.h │ │ ├── mysql_table.h │ │ ├── mysql_thread.h │ │ ├── mysql_transaction.h │ │ ├── psi.h │ │ ├── psi_base.h │ │ └── psi_memory.h │ ├── service_command.h │ ├── service_locking.h │ ├── service_my_plugin_log.h │ ├── service_my_snprintf.h │ ├── service_mysql_alloc.h │ ├── service_mysql_keyring.h │ ├── service_mysql_password_policy.h │ ├── service_mysql_string.h │ ├── service_parser.h │ ├── service_rpl_transaction_ctx.h │ ├── service_rpl_transaction_write_set.h │ ├── service_rules_table.h │ ├── service_security_context.h │ ├── service_srv_session.h │ ├── service_srv_session_info.h │ ├── service_ssl_wrapper.h │ ├── service_thd_alloc.h │ ├── service_thd_engine_lock.h │ ├── service_thd_wait.h │ ├── service_thread_scheduler.h │ ├── services.h │ ├── services.h.pp │ ├── thread_pool_priv.h │ └── thread_type.h │ ├── nc_tparm.h │ ├── ncurses.h │ ├── ncurses │ ├── curses.h │ ├── cursesapp.h │ ├── cursesf.h │ ├── cursesm.h │ ├── cursesp.h │ ├── cursesw.h │ ├── cursslk.h │ ├── eti.h │ ├── etip.h │ ├── form.h │ ├── menu.h │ ├── nc_tparm.h │ ├── ncurses.h │ ├── ncurses_dll.h │ ├── panel.h │ ├── term.h │ ├── term_entry.h │ ├── termcap.h │ ├── tic.h │ └── unctrl.h │ ├── ncurses_dll.h │ ├── ncursesw │ ├── curses.h │ ├── cursesapp.h │ ├── cursesf.h │ ├── cursesm.h │ ├── cursesp.h │ ├── cursesw.h │ ├── cursslk.h │ ├── eti.h │ ├── etip.h │ ├── form.h │ ├── menu.h │ ├── nc_tparm.h │ ├── ncurses.h │ ├── ncurses_dll.h │ ├── panel.h │ ├── term.h │ ├── term_entry.h │ ├── termcap.h │ ├── tic.h │ └── unctrl.h │ ├── net │ ├── ethernet.h │ ├── if.h │ ├── if_arp.h │ ├── if_packet.h │ ├── if_ppp.h │ ├── if_shaper.h │ ├── if_slip.h │ ├── ppp-comp.h │ ├── ppp_defs.h │ └── route.h │ ├── netash │ └── ash.h │ ├── netatalk │ └── at.h │ ├── netax25 │ └── ax25.h │ ├── netdb.h │ ├── neteconet │ └── ec.h │ ├── netinet │ ├── ether.h │ ├── icmp6.h │ ├── if_ether.h │ ├── if_fddi.h │ ├── if_tr.h │ ├── igmp.h │ ├── in.h │ ├── in_systm.h │ ├── ip.h │ ├── ip6.h │ ├── ip_icmp.h │ ├── tcp.h │ └── udp.h │ ├── netipx │ └── ipx.h │ ├── netiucv │ └── iucv.h │ ├── netpacket │ └── packet.h │ ├── netrom │ └── netrom.h │ ├── netrose │ └── rose.h │ ├── nfs │ └── nfs.h │ ├── nl_types.h │ ├── nss.h │ ├── obstack.h │ ├── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── fips.h │ ├── fips_rand.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf-x86_64.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── rc5.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h │ ├── panel.h │ ├── paths.h │ ├── pcre.h │ ├── pcre_scanner.h │ ├── pcre_stringpiece.h │ ├── pcrecpp.h │ ├── pcrecpparg.h │ ├── pcreposix.h │ ├── png.h │ ├── pngconf.h │ ├── pnglibconf.h │ ├── poll.h │ ├── pr29.h │ ├── printf.h │ ├── profile.h │ ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h │ ├── pthread.h │ ├── pty.h │ ├── punycode.h │ ├── pwd.h │ ├── python2.7 │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── boolobject.h │ ├── bufferobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cStringIO.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── cobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── intobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── metagrammar.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── opcode.h │ ├── osdefs.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── pgen.h │ ├── pgenheaders.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig-64.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pygetopt.h │ ├── pymacconfig.h │ ├── pymactoolbox.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── stringobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── timefuncs.h │ ├── token.h │ ├── traceback.h │ ├── tupleobject.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h │ ├── python3.4m │ └── pyconfig-64.h │ ├── quota │ └── mkquota.h │ ├── rdma │ ├── cxgb3-abi.h │ ├── cxgb4-abi.h │ ├── hfi │ │ └── hfi1_user.h │ ├── ib_user_cm.h │ ├── ib_user_mad.h │ ├── ib_user_sa.h │ ├── ib_user_verbs.h │ ├── mlx4-abi.h │ ├── mlx5-abi.h │ ├── mthca-abi.h │ ├── nes-abi.h │ ├── ocrdma-abi.h │ ├── qedr-abi.h │ ├── rdma_netlink.h │ ├── rdma_user_cm.h │ └── rdma_user_rxe.h │ ├── re_comp.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── rpc │ ├── auth.h │ ├── auth_des.h │ ├── auth_unix.h │ ├── clnt.h │ ├── des_crypt.h │ ├── key_prot.h │ ├── netdb.h │ ├── pmap_clnt.h │ ├── pmap_prot.h │ ├── pmap_rmt.h │ ├── rpc.h │ ├── rpc_des.h │ ├── rpc_msg.h │ ├── svc.h │ ├── svc_auth.h │ ├── types.h │ └── xdr.h │ ├── rpcsvc │ ├── bootparam.h │ ├── bootparam_prot.h │ ├── bootparam_prot.x │ ├── key_prot.h │ ├── key_prot.x │ ├── klm_prot.h │ ├── klm_prot.x │ ├── mount.h │ ├── mount.x │ ├── nfs_prot.h │ ├── nfs_prot.x │ ├── nis.h │ ├── nis.x │ ├── nis_callback.h │ ├── nis_callback.x │ ├── nis_object.x │ ├── nis_tags.h │ ├── nislib.h │ ├── nlm_prot.h │ ├── nlm_prot.x │ ├── rex.h │ ├── rex.x │ ├── rstat.h │ ├── rstat.x │ ├── rusers.h │ ├── rusers.x │ ├── sm_inter.h │ ├── sm_inter.x │ ├── spray.h │ ├── spray.x │ ├── yp.h │ ├── yp.x │ ├── yp_prot.h │ ├── ypclnt.h │ ├── yppasswd.h │ ├── yppasswd.x │ └── ypupd.h │ ├── sched.h │ ├── scsi │ ├── cxlflash_ioctl.h │ ├── fc │ │ ├── fc_els.h │ │ ├── fc_fs.h │ │ ├── fc_gs.h │ │ └── fc_ns.h │ ├── scsi.h │ ├── scsi_bsg_fc.h │ ├── scsi_ioctl.h │ ├── scsi_netlink.h │ ├── scsi_netlink_fc.h │ └── sg.h │ ├── search.h │ ├── selinux │ ├── av_permissions.h │ ├── avc.h │ ├── context.h │ ├── flask.h │ ├── get_context_list.h │ ├── get_default_type.h │ ├── label.h │ ├── restorecon.h │ └── selinux.h │ ├── semaphore.h │ ├── sepol │ ├── boolean_record.h │ ├── booleans.h │ ├── cil │ │ └── cil.h │ ├── context.h │ ├── context_record.h │ ├── debug.h │ ├── errcodes.h │ ├── handle.h │ ├── ibendport_record.h │ ├── ibendports.h │ ├── ibpkey_record.h │ ├── ibpkeys.h │ ├── iface_record.h │ ├── interfaces.h │ ├── module.h │ ├── module_to_cil.h │ ├── node_record.h │ ├── nodes.h │ ├── policydb.h │ ├── policydb │ │ ├── avrule_block.h │ │ ├── avtab.h │ │ ├── conditional.h │ │ ├── constraint.h │ │ ├── context.h │ │ ├── ebitmap.h │ │ ├── expand.h │ │ ├── flask.h │ │ ├── flask_types.h │ │ ├── hashtab.h │ │ ├── hierarchy.h │ │ ├── link.h │ │ ├── mls_types.h │ │ ├── module.h │ │ ├── polcaps.h │ │ ├── policydb.h │ │ ├── services.h │ │ ├── sidtab.h │ │ ├── symtab.h │ │ └── util.h │ ├── port_record.h │ ├── ports.h │ ├── roles.h │ ├── sepol.h │ ├── user_record.h │ └── users.h │ ├── setjmp.h │ ├── sgtty.h │ ├── shadow.h │ ├── signal.h │ ├── sound │ ├── asequencer.h │ ├── asoc.h │ ├── asound.h │ ├── asound_fm.h │ ├── compress_offload.h │ ├── compress_params.h │ ├── emu10k1.h │ ├── hdsp.h │ ├── hdspm.h │ ├── sb16_csp.h │ ├── sfnt_info.h │ ├── snd_sst_tokens.h │ ├── tlv.h │ └── usb_stream.h │ ├── spawn.h │ ├── stab.h │ ├── stdc-predef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── string.h │ ├── stringprep.h │ ├── strings.h │ ├── sys │ ├── acct.h │ ├── auxv.h │ ├── bitypes.h │ ├── cdefs.h │ ├── debugreg.h │ ├── dir.h │ ├── elf.h │ ├── epoll.h │ ├── errno.h │ ├── eventfd.h │ ├── fanotify.h │ ├── fcntl.h │ ├── file.h │ ├── fsuid.h │ ├── gmon.h │ ├── gmon_out.h │ ├── inotify.h │ ├── io.h │ ├── ioctl.h │ ├── ipc.h │ ├── kd.h │ ├── kdaemon.h │ ├── klog.h │ ├── mman.h │ ├── mount.h │ ├── msg.h │ ├── mtio.h │ ├── param.h │ ├── pci.h │ ├── perm.h │ ├── personality.h │ ├── poll.h │ ├── prctl.h │ ├── procfs.h │ ├── profil.h │ ├── ptrace.h │ ├── queue.h │ ├── quota.h │ ├── raw.h │ ├── reboot.h │ ├── reg.h │ ├── resource.h │ ├── select.h │ ├── sem.h │ ├── sendfile.h │ ├── shm.h │ ├── signal.h │ ├── signalfd.h │ ├── socket.h │ ├── socketvar.h │ ├── soundcard.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── swap.h │ ├── syscall.h │ ├── sysctl.h │ ├── sysinfo.h │ ├── syslog.h │ ├── sysmacros.h │ ├── termios.h │ ├── time.h │ ├── timeb.h │ ├── timerfd.h │ ├── times.h │ ├── timex.h │ ├── ttychars.h │ ├── ttydefaults.h │ ├── types.h │ ├── ucontext.h │ ├── uio.h │ ├── ultrasound.h │ ├── un.h │ ├── unistd.h │ ├── user.h │ ├── ustat.h │ ├── utsname.h │ ├── vfs.h │ ├── vlimit.h │ ├── vm86.h │ ├── vt.h │ ├── vtimes.h │ ├── wait.h │ └── xattr.h │ ├── syscall.h │ ├── sysexits.h │ ├── syslog.h │ ├── tar.h │ ├── term.h │ ├── term_entry.h │ ├── termcap.h │ ├── termio.h │ ├── termios.h │ ├── tgmath.h │ ├── thread_db.h │ ├── tic.h │ ├── time.h │ ├── tirpc │ ├── netconfig.h │ ├── rpc │ │ ├── auth.h │ │ ├── auth_des.h │ │ ├── auth_gss.h │ │ ├── auth_kerb.h │ │ ├── auth_unix.h │ │ ├── clnt.h │ │ ├── clnt_soc.h │ │ ├── clnt_stat.h │ │ ├── des.h │ │ ├── des_crypt.h │ │ ├── nettype.h │ │ ├── pmap_clnt.h │ │ ├── pmap_prot.h │ │ ├── pmap_rmt.h │ │ ├── raw.h │ │ ├── rpc.h │ │ ├── rpc_com.h │ │ ├── rpc_msg.h │ │ ├── rpcb_clnt.h │ │ ├── rpcb_prot.h │ │ ├── rpcb_prot.x │ │ ├── rpcent.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── svc_dg.h │ │ ├── svc_soc.h │ │ ├── types.h │ │ └── xdr.h │ └── rpcsvc │ │ ├── crypt.h │ │ └── crypt.x │ ├── tld.h │ ├── ttyent.h │ ├── uchar.h │ ├── ucontext.h │ ├── ulimit.h │ ├── unctrl.h │ ├── unicode │ ├── alphaindex.h │ ├── appendable.h │ ├── basictz.h │ ├── bms.h │ ├── bmsearch.h │ ├── brkiter.h │ ├── bytestream.h │ ├── bytestrie.h │ ├── bytestriebuilder.h │ ├── calendar.h │ ├── caniter.h │ ├── chariter.h │ ├── choicfmt.h │ ├── coleitr.h │ ├── coll.h │ ├── colldata.h │ ├── curramt.h │ ├── currpinf.h │ ├── currunit.h │ ├── datefmt.h │ ├── dbbi.h │ ├── dcfmtsym.h │ ├── decimfmt.h │ ├── docmain.h │ ├── dtfmtsym.h │ ├── dtintrv.h │ ├── dtitvfmt.h │ ├── dtitvinf.h │ ├── dtptngen.h │ ├── dtrule.h │ ├── enumset.h │ ├── errorcode.h │ ├── fieldpos.h │ ├── fmtable.h │ ├── format.h │ ├── fpositer.h │ ├── gender.h │ ├── gregocal.h │ ├── icudataver.h │ ├── icuplug.h │ ├── idna.h │ ├── listformatter.h │ ├── localpointer.h │ ├── locdspnm.h │ ├── locid.h │ ├── measfmt.h │ ├── measunit.h │ ├── measure.h │ ├── messagepattern.h │ ├── msgfmt.h │ ├── normalizer2.h │ ├── normlzr.h │ ├── numfmt.h │ ├── numsys.h │ ├── parseerr.h │ ├── parsepos.h │ ├── platform.h │ ├── plurfmt.h │ ├── plurrule.h │ ├── ptypes.h │ ├── putil.h │ ├── rbbi.h │ ├── rbnf.h │ ├── rbtz.h │ ├── regex.h │ ├── rep.h │ ├── resbund.h │ ├── schriter.h │ ├── search.h │ ├── selfmt.h │ ├── simpletz.h │ ├── smpdtfmt.h │ ├── sortkey.h │ ├── std_string.h │ ├── strenum.h │ ├── stringpiece.h │ ├── stringtriebuilder.h │ ├── stsearch.h │ ├── symtable.h │ ├── tblcoll.h │ ├── timezone.h │ ├── tmunit.h │ ├── tmutamt.h │ ├── tmutfmt.h │ ├── translit.h │ ├── tzfmt.h │ ├── tznames.h │ ├── tzrule.h │ ├── tztrans.h │ ├── ubidi.h │ ├── ubrk.h │ ├── ucal.h │ ├── ucasemap.h │ ├── ucat.h │ ├── uchar.h │ ├── ucharstrie.h │ ├── ucharstriebuilder.h │ ├── uchriter.h │ ├── uclean.h │ ├── ucnv.h │ ├── ucnv_cb.h │ ├── ucnv_err.h │ ├── ucnvsel.h │ ├── ucol.h │ ├── ucoleitr.h │ ├── uconfig.h │ ├── ucsdet.h │ ├── ucurr.h │ ├── udat.h │ ├── udata.h │ ├── udateintervalformat.h │ ├── udatpg.h │ ├── udisplaycontext.h │ ├── uenum.h │ ├── ugender.h │ ├── uidna.h │ ├── uiter.h │ ├── uldnames.h │ ├── uloc.h │ ├── ulocdata.h │ ├── umachine.h │ ├── umisc.h │ ├── umsg.h │ ├── unifilt.h │ ├── unifunct.h │ ├── unimatch.h │ ├── unirepl.h │ ├── uniset.h │ ├── unistr.h │ ├── unorm.h │ ├── unorm2.h │ ├── unum.h │ ├── uobject.h │ ├── upluralrules.h │ ├── uregex.h │ ├── urename.h │ ├── urep.h │ ├── ures.h │ ├── uscript.h │ ├── usearch.h │ ├── uset.h │ ├── usetiter.h │ ├── ushape.h │ ├── uspoof.h │ ├── usprep.h │ ├── ustdio.h │ ├── ustream.h │ ├── ustring.h │ ├── ustringtrie.h │ ├── utext.h │ ├── utf.h │ ├── utf16.h │ ├── utf32.h │ ├── utf8.h │ ├── utf_old.h │ ├── utmscale.h │ ├── utrace.h │ ├── utrans.h │ ├── utypes.h │ ├── uvernum.h │ ├── uversion.h │ └── vtzone.h │ ├── unistd.h │ ├── ustat.h │ ├── utime.h │ ├── utmp.h │ ├── utmpx.h │ ├── uuid │ └── uuid.h │ ├── values.h │ ├── verto-module.h │ ├── verto.h │ ├── video │ ├── edid.h │ ├── sisfb.h │ └── uvesafb.h │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ ├── wordexp.h │ ├── xcb │ ├── bigreq.h │ ├── composite.h │ ├── damage.h │ ├── dpms.h │ ├── dri2.h │ ├── dri3.h │ ├── ge.h │ ├── glx.h │ ├── present.h │ ├── randr.h │ ├── record.h │ ├── render.h │ ├── res.h │ ├── screensaver.h │ ├── shape.h │ ├── shm.h │ ├── sync.h │ ├── xc_misc.h │ ├── xcb.h │ ├── xcbext.h │ ├── xevie.h │ ├── xf86dri.h │ ├── xfixes.h │ ├── xinerama.h │ ├── xinput.h │ ├── xkb.h │ ├── xprint.h │ ├── xproto.h │ ├── xselinux.h │ ├── xtest.h │ ├── xv.h │ └── xvmc.h │ ├── xen │ ├── evtchn.h │ └── privcmd.h │ ├── xlocale.h │ ├── zconf.h │ ├── zip.h │ ├── zipconf-64.h │ ├── zipconf.h │ └── zlib.h ├── 虚拟化.md └── 虚拟化.pdf /LinuxOps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/LinuxOps -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unix-Net 2 | 3 | Unix网络编程系列源代码添加注释,方便阅读 4 | -------------------------------------------------------------------------------- /UNIX网络编程卷1/UNIX网络编程/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷1/UNIX网络编程/.DS_Store -------------------------------------------------------------------------------- /UNIX网络编程卷1/UNIX网络编程/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷1/UNIX网络编程/config.h -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._10.Posix信号量: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._10.Posix信号量 -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._2.Posix IPC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._2.Posix IPC -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._4.管道和FIFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._4.管道和FIFO -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._5.Poxis消息队列: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._5.Poxis消息队列 -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._7.互斥锁与条件变量: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._7.互斥锁与条件变量 -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._8.读写锁: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._8.读写锁 -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._9.记录上锁(文件锁): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._9.记录上锁(文件锁) -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/._config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/._config.h -------------------------------------------------------------------------------- /UNIX网络编程卷2/UNIX进程间通信/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/UNIX进程间通信/config.h -------------------------------------------------------------------------------- /UNIX网络编程卷2/unpipc使用方法/._config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/unpipc使用方法/._config.h -------------------------------------------------------------------------------- /UNIX网络编程卷2/unpipc使用方法/._wrapunix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/unpipc使用方法/._wrapunix.c -------------------------------------------------------------------------------- /UNIX网络编程卷2/unpipc使用方法/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/unpipc使用方法/config.h -------------------------------------------------------------------------------- /UNIX网络编程卷2/unpipc使用方法/wrapunix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/unpipc使用方法/wrapunix.c -------------------------------------------------------------------------------- /UNIX网络编程卷2/unpipc使用方法/代码使用常见错误.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/UNIX网络编程卷2/unpipc使用方法/代码使用常见错误.txt -------------------------------------------------------------------------------- /fastevent/fastevent.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent.sdf -------------------------------------------------------------------------------- /fastevent/fastevent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent.sln -------------------------------------------------------------------------------- /fastevent/fastevent.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent.v12.suo -------------------------------------------------------------------------------- /fastevent/fastevent/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Channel.cpp -------------------------------------------------------------------------------- /fastevent/fastevent/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Channel.h -------------------------------------------------------------------------------- /fastevent/fastevent/Epoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Epoll.cpp -------------------------------------------------------------------------------- /fastevent/fastevent/Epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Epoll.h -------------------------------------------------------------------------------- /fastevent/fastevent/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Logger.cpp -------------------------------------------------------------------------------- /fastevent/fastevent/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/fastevent/Logger.h -------------------------------------------------------------------------------- /fastevent/include/FlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/FlexLexer.h -------------------------------------------------------------------------------- /fastevent/include/GL/glxint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/GL/glxint.h -------------------------------------------------------------------------------- /fastevent/include/GL/glxmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/GL/glxmd.h -------------------------------------------------------------------------------- /fastevent/include/GL/glxproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/GL/glxproto.h -------------------------------------------------------------------------------- /fastevent/include/GL/glxtokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/GL/glxtokens.h -------------------------------------------------------------------------------- /fastevent/include/X11/DECkeysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/DECkeysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/HPkeysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/HPkeysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/ImUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/ImUtil.h -------------------------------------------------------------------------------- /fastevent/include/X11/PM/PM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/PM/PM.h -------------------------------------------------------------------------------- /fastevent/include/X11/PM/PMproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/PM/PMproto.h -------------------------------------------------------------------------------- /fastevent/include/X11/Sunkeysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Sunkeysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/X.h -------------------------------------------------------------------------------- /fastevent/include/X11/XF86keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/XF86keysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/XKBlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/XKBlib.h -------------------------------------------------------------------------------- /fastevent/include/X11/XWDFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/XWDFile.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xalloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xalloca.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xarch.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xatom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xatom.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xauth.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xcms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xcms.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xdefs.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xfuncproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xfuncproto.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xfuncs.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xlib-xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xlib-xcb.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xlib.h -------------------------------------------------------------------------------- /fastevent/include/X11/XlibConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/XlibConf.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xlibint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xlibint.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xlocale.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xmd.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xos.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xos_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xos_r.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xosdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xosdefs.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xpoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xpoll.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xproto.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xprotostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xprotostr.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xregion.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xresource.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xthreads.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xutil.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xw32defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xw32defs.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xwindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xwindows.h -------------------------------------------------------------------------------- /fastevent/include/X11/Xwinsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/Xwinsock.h -------------------------------------------------------------------------------- /fastevent/include/X11/ap_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/ap_keysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/cursorfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/cursorfont.h -------------------------------------------------------------------------------- /fastevent/include/X11/fonts/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/fonts/FS.h -------------------------------------------------------------------------------- /fastevent/include/X11/fonts/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/fonts/font.h -------------------------------------------------------------------------------- /fastevent/include/X11/keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/keysym.h -------------------------------------------------------------------------------- /fastevent/include/X11/keysymdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/keysymdef.h -------------------------------------------------------------------------------- /fastevent/include/X11/xpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/X11/xpm.h -------------------------------------------------------------------------------- /fastevent/include/_G_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/_G_config.h -------------------------------------------------------------------------------- /fastevent/include/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/a.out.h -------------------------------------------------------------------------------- /fastevent/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/aio.h -------------------------------------------------------------------------------- /fastevent/include/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/aliases.h -------------------------------------------------------------------------------- /fastevent/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/alloca.h -------------------------------------------------------------------------------- /fastevent/include/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ar.h -------------------------------------------------------------------------------- /fastevent/include/ares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ares.h -------------------------------------------------------------------------------- /fastevent/include/ares_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ares_build.h -------------------------------------------------------------------------------- /fastevent/include/ares_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ares_dns.h -------------------------------------------------------------------------------- /fastevent/include/ares_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ares_rules.h -------------------------------------------------------------------------------- /fastevent/include/ares_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ares_version.h -------------------------------------------------------------------------------- /fastevent/include/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/argp.h -------------------------------------------------------------------------------- /fastevent/include/argz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/argz.h -------------------------------------------------------------------------------- /fastevent/include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/arpa/ftp.h -------------------------------------------------------------------------------- /fastevent/include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/arpa/inet.h -------------------------------------------------------------------------------- /fastevent/include/arpa/nameser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/arpa/nameser.h -------------------------------------------------------------------------------- /fastevent/include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/arpa/telnet.h -------------------------------------------------------------------------------- /fastevent/include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/arpa/tftp.h -------------------------------------------------------------------------------- /fastevent/include/asm/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/a.out.h -------------------------------------------------------------------------------- /fastevent/include/asm/auxvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/auxvec.h -------------------------------------------------------------------------------- /fastevent/include/asm/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/boot.h -------------------------------------------------------------------------------- /fastevent/include/asm/bootparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/bootparam.h -------------------------------------------------------------------------------- /fastevent/include/asm/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/byteorder.h -------------------------------------------------------------------------------- /fastevent/include/asm/debugreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/debugreg.h -------------------------------------------------------------------------------- /fastevent/include/asm/e820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/e820.h -------------------------------------------------------------------------------- /fastevent/include/asm/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/hw_breakpoint.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/hyperv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/hyperv.h -------------------------------------------------------------------------------- /fastevent/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/ioctls.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/ipcbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/ist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/ist.h -------------------------------------------------------------------------------- /fastevent/include/asm/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/kvm.h -------------------------------------------------------------------------------- /fastevent/include/asm/kvm_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/kvm_para.h -------------------------------------------------------------------------------- /fastevent/include/asm/kvm_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/kvm_perf.h -------------------------------------------------------------------------------- /fastevent/include/asm/ldt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/ldt.h -------------------------------------------------------------------------------- /fastevent/include/asm/mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/mce.h -------------------------------------------------------------------------------- /fastevent/include/asm/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/mman.h -------------------------------------------------------------------------------- /fastevent/include/asm/msgbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/msr-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/msr-index.h -------------------------------------------------------------------------------- /fastevent/include/asm/msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/msr.h -------------------------------------------------------------------------------- /fastevent/include/asm/mtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/mtrr.h -------------------------------------------------------------------------------- /fastevent/include/asm/param.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/perf_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/perf_regs.h -------------------------------------------------------------------------------- /fastevent/include/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/prctl.h -------------------------------------------------------------------------------- /fastevent/include/asm/ptrace-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/ptrace-abi.h -------------------------------------------------------------------------------- /fastevent/include/asm/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/ptrace.h -------------------------------------------------------------------------------- /fastevent/include/asm/resource.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/sembuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/sembuf.h -------------------------------------------------------------------------------- /fastevent/include/asm/setup.h: -------------------------------------------------------------------------------- 1 | /* */ 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/shmbuf.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/sigcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/sigcontext.h -------------------------------------------------------------------------------- /fastevent/include/asm/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/siginfo.h -------------------------------------------------------------------------------- /fastevent/include/asm/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/signal.h -------------------------------------------------------------------------------- /fastevent/include/asm/socket.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/sockios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/stat.h -------------------------------------------------------------------------------- /fastevent/include/asm/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/statfs.h -------------------------------------------------------------------------------- /fastevent/include/asm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/svm.h -------------------------------------------------------------------------------- /fastevent/include/asm/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/swab.h -------------------------------------------------------------------------------- /fastevent/include/asm/termbits.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/termios.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/types.h -------------------------------------------------------------------------------- /fastevent/include/asm/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/ucontext.h -------------------------------------------------------------------------------- /fastevent/include/asm/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/unistd.h -------------------------------------------------------------------------------- /fastevent/include/asm/unistd_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/unistd_32.h -------------------------------------------------------------------------------- /fastevent/include/asm/unistd_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/unistd_64.h -------------------------------------------------------------------------------- /fastevent/include/asm/unistd_x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/unistd_x32.h -------------------------------------------------------------------------------- /fastevent/include/asm/vm86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/vm86.h -------------------------------------------------------------------------------- /fastevent/include/asm/vmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/vmx.h -------------------------------------------------------------------------------- /fastevent/include/asm/vsyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/asm/vsyscall.h -------------------------------------------------------------------------------- /fastevent/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/assert.h -------------------------------------------------------------------------------- /fastevent/include/autosprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/autosprintf.h -------------------------------------------------------------------------------- /fastevent/include/bits/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/a.out.h -------------------------------------------------------------------------------- /fastevent/include/bits/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/byteswap.h -------------------------------------------------------------------------------- /fastevent/include/bits/confname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/confname.h -------------------------------------------------------------------------------- /fastevent/include/bits/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/dirent.h -------------------------------------------------------------------------------- /fastevent/include/bits/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/dlfcn.h -------------------------------------------------------------------------------- /fastevent/include/bits/elfclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/elfclass.h -------------------------------------------------------------------------------- /fastevent/include/bits/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/endian.h -------------------------------------------------------------------------------- /fastevent/include/bits/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/epoll.h -------------------------------------------------------------------------------- /fastevent/include/bits/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/errno.h -------------------------------------------------------------------------------- /fastevent/include/bits/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/error.h -------------------------------------------------------------------------------- /fastevent/include/bits/eventfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/eventfd.h -------------------------------------------------------------------------------- /fastevent/include/bits/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/fcntl.h -------------------------------------------------------------------------------- /fastevent/include/bits/fcntl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/fcntl2.h -------------------------------------------------------------------------------- /fastevent/include/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/fenv.h -------------------------------------------------------------------------------- /fastevent/include/bits/huge_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/huge_val.h -------------------------------------------------------------------------------- /fastevent/include/bits/huge_valf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/huge_valf.h -------------------------------------------------------------------------------- /fastevent/include/bits/huge_vall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/huge_vall.h -------------------------------------------------------------------------------- /fastevent/include/bits/hwcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/hwcap.h -------------------------------------------------------------------------------- /fastevent/include/bits/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/in.h -------------------------------------------------------------------------------- /fastevent/include/bits/inf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/inf.h -------------------------------------------------------------------------------- /fastevent/include/bits/initspin.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /fastevent/include/bits/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/inotify.h -------------------------------------------------------------------------------- /fastevent/include/bits/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/ioctls.h -------------------------------------------------------------------------------- /fastevent/include/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/ipc.h -------------------------------------------------------------------------------- /fastevent/include/bits/ipctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/ipctypes.h -------------------------------------------------------------------------------- /fastevent/include/bits/libc-lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/libc-lock.h -------------------------------------------------------------------------------- /fastevent/include/bits/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/link.h -------------------------------------------------------------------------------- /fastevent/include/bits/local_lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/local_lim.h -------------------------------------------------------------------------------- /fastevent/include/bits/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/locale.h -------------------------------------------------------------------------------- /fastevent/include/bits/mathcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/mathcalls.h -------------------------------------------------------------------------------- /fastevent/include/bits/mathdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/mathdef.h -------------------------------------------------------------------------------- /fastevent/include/bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/mman.h -------------------------------------------------------------------------------- /fastevent/include/bits/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/mqueue.h -------------------------------------------------------------------------------- /fastevent/include/bits/mqueue2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/mqueue2.h -------------------------------------------------------------------------------- /fastevent/include/bits/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/msq.h -------------------------------------------------------------------------------- /fastevent/include/bits/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/nan.h -------------------------------------------------------------------------------- /fastevent/include/bits/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/netdb.h -------------------------------------------------------------------------------- /fastevent/include/bits/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/param.h -------------------------------------------------------------------------------- /fastevent/include/bits/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/poll.h -------------------------------------------------------------------------------- /fastevent/include/bits/poll2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/poll2.h -------------------------------------------------------------------------------- /fastevent/include/bits/posix_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/posix_opt.h -------------------------------------------------------------------------------- /fastevent/include/bits/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/resource.h -------------------------------------------------------------------------------- /fastevent/include/bits/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sched.h -------------------------------------------------------------------------------- /fastevent/include/bits/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/select.h -------------------------------------------------------------------------------- /fastevent/include/bits/select2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/select2.h -------------------------------------------------------------------------------- /fastevent/include/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sem.h -------------------------------------------------------------------------------- /fastevent/include/bits/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/semaphore.h -------------------------------------------------------------------------------- /fastevent/include/bits/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/setjmp.h -------------------------------------------------------------------------------- /fastevent/include/bits/setjmp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/setjmp2.h -------------------------------------------------------------------------------- /fastevent/include/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/shm.h -------------------------------------------------------------------------------- /fastevent/include/bits/sigaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sigaction.h -------------------------------------------------------------------------------- /fastevent/include/bits/siginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/siginfo.h -------------------------------------------------------------------------------- /fastevent/include/bits/signalfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/signalfd.h -------------------------------------------------------------------------------- /fastevent/include/bits/signum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/signum.h -------------------------------------------------------------------------------- /fastevent/include/bits/sigset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sigset.h -------------------------------------------------------------------------------- /fastevent/include/bits/sigstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sigstack.h -------------------------------------------------------------------------------- /fastevent/include/bits/sigthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sigthread.h -------------------------------------------------------------------------------- /fastevent/include/bits/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sockaddr.h -------------------------------------------------------------------------------- /fastevent/include/bits/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/socket.h -------------------------------------------------------------------------------- /fastevent/include/bits/socket2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/socket2.h -------------------------------------------------------------------------------- /fastevent/include/bits/stab.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stab.def -------------------------------------------------------------------------------- /fastevent/include/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stat.h -------------------------------------------------------------------------------- /fastevent/include/bits/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/statfs.h -------------------------------------------------------------------------------- /fastevent/include/bits/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/statvfs.h -------------------------------------------------------------------------------- /fastevent/include/bits/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stdio.h -------------------------------------------------------------------------------- /fastevent/include/bits/stdio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stdio2.h -------------------------------------------------------------------------------- /fastevent/include/bits/stdio_lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stdio_lim.h -------------------------------------------------------------------------------- /fastevent/include/bits/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/stdlib.h -------------------------------------------------------------------------------- /fastevent/include/bits/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/string.h -------------------------------------------------------------------------------- /fastevent/include/bits/string2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/string2.h -------------------------------------------------------------------------------- /fastevent/include/bits/string3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/string3.h -------------------------------------------------------------------------------- /fastevent/include/bits/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/syscall.h -------------------------------------------------------------------------------- /fastevent/include/bits/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/sysctl.h -------------------------------------------------------------------------------- /fastevent/include/bits/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/syslog.h -------------------------------------------------------------------------------- /fastevent/include/bits/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/termios.h -------------------------------------------------------------------------------- /fastevent/include/bits/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/time.h -------------------------------------------------------------------------------- /fastevent/include/bits/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/timerfd.h -------------------------------------------------------------------------------- /fastevent/include/bits/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/timex.h -------------------------------------------------------------------------------- /fastevent/include/bits/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/types.h -------------------------------------------------------------------------------- /fastevent/include/bits/typesizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/typesizes.h -------------------------------------------------------------------------------- /fastevent/include/bits/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/uio.h -------------------------------------------------------------------------------- /fastevent/include/bits/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/unistd.h -------------------------------------------------------------------------------- /fastevent/include/bits/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/ustat.h -------------------------------------------------------------------------------- /fastevent/include/bits/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/utmp.h -------------------------------------------------------------------------------- /fastevent/include/bits/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/utmpx.h -------------------------------------------------------------------------------- /fastevent/include/bits/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/utsname.h -------------------------------------------------------------------------------- /fastevent/include/bits/waitflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/waitflags.h -------------------------------------------------------------------------------- /fastevent/include/bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/wchar.h -------------------------------------------------------------------------------- /fastevent/include/bits/wchar2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/wchar2.h -------------------------------------------------------------------------------- /fastevent/include/bits/wordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/wordsize.h -------------------------------------------------------------------------------- /fastevent/include/bits/xopen_lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bits/xopen_lim.h -------------------------------------------------------------------------------- /fastevent/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/byteswap.h -------------------------------------------------------------------------------- /fastevent/include/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/bzlib.h -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/array -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/atomic -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/bitset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/bitset -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cctype -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cerrno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cerrno -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cfenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cfenv -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cfloat -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/chrono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/chrono -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cmath -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cstdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cstdio -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/ctime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/ctime -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/cwchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/cwchar -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/deque -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/fenv.h -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/future: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/future -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/ios -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/iosfwd -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/limits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/limits -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/list -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/locale -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/map -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/memory -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/mutex -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/new -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/queue -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/random -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/ratio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/ratio -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/regex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/regex -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/set -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.2/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.2/stack -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.5/ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.5/ios -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.5/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.5/map -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.5/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.5/new -------------------------------------------------------------------------------- /fastevent/include/c++/4.8.5/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/c++/4.8.5/set -------------------------------------------------------------------------------- /fastevent/include/com_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/com_err.h -------------------------------------------------------------------------------- /fastevent/include/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/complex.h -------------------------------------------------------------------------------- /fastevent/include/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cpio.h -------------------------------------------------------------------------------- /fastevent/include/cpufreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cpufreq.h -------------------------------------------------------------------------------- /fastevent/include/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/crypt.h -------------------------------------------------------------------------------- /fastevent/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ctype.h -------------------------------------------------------------------------------- /fastevent/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/curl/curl.h -------------------------------------------------------------------------------- /fastevent/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/curl/easy.h -------------------------------------------------------------------------------- /fastevent/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/curl/multi.h -------------------------------------------------------------------------------- /fastevent/include/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/curses.h -------------------------------------------------------------------------------- /fastevent/include/cursesapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursesapp.h -------------------------------------------------------------------------------- /fastevent/include/cursesf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursesf.h -------------------------------------------------------------------------------- /fastevent/include/cursesm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursesm.h -------------------------------------------------------------------------------- /fastevent/include/cursesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursesp.h -------------------------------------------------------------------------------- /fastevent/include/cursesw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursesw.h -------------------------------------------------------------------------------- /fastevent/include/cursslk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/cursslk.h -------------------------------------------------------------------------------- /fastevent/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/dirent.h -------------------------------------------------------------------------------- /fastevent/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/dlfcn.h -------------------------------------------------------------------------------- /fastevent/include/drm/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/drm/drm.h -------------------------------------------------------------------------------- /fastevent/include/drm/mga_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/drm/mga_drm.h -------------------------------------------------------------------------------- /fastevent/include/drm/qxl_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/drm/qxl_drm.h -------------------------------------------------------------------------------- /fastevent/include/drm/sis_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/drm/sis_drm.h -------------------------------------------------------------------------------- /fastevent/include/drm/via_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/drm/via_drm.h -------------------------------------------------------------------------------- /fastevent/include/e2p/e2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/e2p/e2p.h -------------------------------------------------------------------------------- /fastevent/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/elf.h -------------------------------------------------------------------------------- /fastevent/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/endian.h -------------------------------------------------------------------------------- /fastevent/include/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/entities.h -------------------------------------------------------------------------------- /fastevent/include/envz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/envz.h -------------------------------------------------------------------------------- /fastevent/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/err.h -------------------------------------------------------------------------------- /fastevent/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/errno.h -------------------------------------------------------------------------------- /fastevent/include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/error.h -------------------------------------------------------------------------------- /fastevent/include/et/com_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/et/com_err.h -------------------------------------------------------------------------------- /fastevent/include/eti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/eti.h -------------------------------------------------------------------------------- /fastevent/include/etip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/etip.h -------------------------------------------------------------------------------- /fastevent/include/evdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/evdns.h -------------------------------------------------------------------------------- /fastevent/include/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event.h -------------------------------------------------------------------------------- /fastevent/include/event2/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event2/dns.h -------------------------------------------------------------------------------- /fastevent/include/event2/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event2/http.h -------------------------------------------------------------------------------- /fastevent/include/event2/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event2/rpc.h -------------------------------------------------------------------------------- /fastevent/include/event2/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event2/tag.h -------------------------------------------------------------------------------- /fastevent/include/event2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/event2/util.h -------------------------------------------------------------------------------- /fastevent/include/evhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/evhttp.h -------------------------------------------------------------------------------- /fastevent/include/evrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/evrpc.h -------------------------------------------------------------------------------- /fastevent/include/evutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/evutil.h -------------------------------------------------------------------------------- /fastevent/include/execinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/execinfo.h -------------------------------------------------------------------------------- /fastevent/include/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/expat.h -------------------------------------------------------------------------------- /fastevent/include/ext2fs/tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ext2fs/tdb.h -------------------------------------------------------------------------------- /fastevent/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fcntl.h -------------------------------------------------------------------------------- /fastevent/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/features.h -------------------------------------------------------------------------------- /fastevent/include/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fenv.h -------------------------------------------------------------------------------- /fastevent/include/fmtmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fmtmsg.h -------------------------------------------------------------------------------- /fastevent/include/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fnmatch.h -------------------------------------------------------------------------------- /fastevent/include/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/form.h -------------------------------------------------------------------------------- /fastevent/include/fpu_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fpu_control.h -------------------------------------------------------------------------------- /fastevent/include/fstab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fstab.h -------------------------------------------------------------------------------- /fastevent/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ft2build.h -------------------------------------------------------------------------------- /fastevent/include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/fts.h -------------------------------------------------------------------------------- /fastevent/include/ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ftw.h -------------------------------------------------------------------------------- /fastevent/include/gconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gconv.h -------------------------------------------------------------------------------- /fastevent/include/gcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gcrypt.h -------------------------------------------------------------------------------- /fastevent/include/gd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gd.h -------------------------------------------------------------------------------- /fastevent/include/gd_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gd_io.h -------------------------------------------------------------------------------- /fastevent/include/gdcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdcache.h -------------------------------------------------------------------------------- /fastevent/include/gdfontg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfontg.h -------------------------------------------------------------------------------- /fastevent/include/gdfontl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfontl.h -------------------------------------------------------------------------------- /fastevent/include/gdfontmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfontmb.h -------------------------------------------------------------------------------- /fastevent/include/gdfonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfonts.h -------------------------------------------------------------------------------- /fastevent/include/gdfontt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfontt.h -------------------------------------------------------------------------------- /fastevent/include/gdfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gdfx.h -------------------------------------------------------------------------------- /fastevent/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/getopt.h -------------------------------------------------------------------------------- /fastevent/include/gettext-po.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gettext-po.h -------------------------------------------------------------------------------- /fastevent/include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/glob.h -------------------------------------------------------------------------------- /fastevent/include/gmp-mparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gmp-mparam.h -------------------------------------------------------------------------------- /fastevent/include/gmp-x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gmp-x86_64.h -------------------------------------------------------------------------------- /fastevent/include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gmp.h -------------------------------------------------------------------------------- /fastevent/include/gmpxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gmpxx.h -------------------------------------------------------------------------------- /fastevent/include/gnu/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gnu/stubs.h -------------------------------------------------------------------------------- /fastevent/include/gpg-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gpg-error.h -------------------------------------------------------------------------------- /fastevent/include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/grp.h -------------------------------------------------------------------------------- /fastevent/include/gshadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gshadow.h -------------------------------------------------------------------------------- /fastevent/include/gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssapi.h -------------------------------------------------------------------------------- /fastevent/include/gssrpc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssrpc/auth.h -------------------------------------------------------------------------------- /fastevent/include/gssrpc/clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssrpc/clnt.h -------------------------------------------------------------------------------- /fastevent/include/gssrpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssrpc/rpc.h -------------------------------------------------------------------------------- /fastevent/include/gssrpc/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssrpc/svc.h -------------------------------------------------------------------------------- /fastevent/include/gssrpc/xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/gssrpc/xdr.h -------------------------------------------------------------------------------- /fastevent/include/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/iconv.h -------------------------------------------------------------------------------- /fastevent/include/idn-free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/idn-free.h -------------------------------------------------------------------------------- /fastevent/include/idn-int.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/idna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/idna.h -------------------------------------------------------------------------------- /fastevent/include/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ieee754.h -------------------------------------------------------------------------------- /fastevent/include/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ifaddrs.h -------------------------------------------------------------------------------- /fastevent/include/imap/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/dummy.h -------------------------------------------------------------------------------- /fastevent/include/imap/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/env.h -------------------------------------------------------------------------------- /fastevent/include/imap/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/fs.h -------------------------------------------------------------------------------- /fastevent/include/imap/ftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/ftl.h -------------------------------------------------------------------------------- /fastevent/include/imap/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/mail.h -------------------------------------------------------------------------------- /fastevent/include/imap/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/misc.h -------------------------------------------------------------------------------- /fastevent/include/imap/netmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/netmsg.h -------------------------------------------------------------------------------- /fastevent/include/imap/newsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/newsrc.h -------------------------------------------------------------------------------- /fastevent/include/imap/nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/nl.h -------------------------------------------------------------------------------- /fastevent/include/imap/nntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/nntp.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_a32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_a32.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_a41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_a41.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_a52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_a52.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_aix.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_aos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_aos.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_art.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_art.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_asv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_asv.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_aux.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_bsd.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_bsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_bsf.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_bsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_bsi.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_cvx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_cvx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_cyg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_cyg.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_d-g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_d-g.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_do4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_do4.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_drs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_drs.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_dyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_dyn.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_hpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_hpp.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_isc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_isc.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_lnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_lnx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_lyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_lyn.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_mct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_mct.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_mnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_mnt.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_nto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_nto.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_nxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_nxt.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_os4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_os4.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_osf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_osf.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_osx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_ptx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_ptx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_pyr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_pyr.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_qnx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_s40.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_s40.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sc5.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sco.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sgi.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_shp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_shp.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_slx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_slx.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sos.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sua.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sun.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sv2.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_sv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_sv4.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_ult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_ult.h -------------------------------------------------------------------------------- /fastevent/include/imap/os_vu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/os_vu2.h -------------------------------------------------------------------------------- /fastevent/include/imap/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/osdep.h -------------------------------------------------------------------------------- /fastevent/include/imap/pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/pseudo.h -------------------------------------------------------------------------------- /fastevent/include/imap/rfc822.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/rfc822.h -------------------------------------------------------------------------------- /fastevent/include/imap/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/smtp.h -------------------------------------------------------------------------------- /fastevent/include/imap/sslio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/sslio.h -------------------------------------------------------------------------------- /fastevent/include/imap/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/tcp.h -------------------------------------------------------------------------------- /fastevent/include/imap/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/unix.h -------------------------------------------------------------------------------- /fastevent/include/imap/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/imap/utf8.h -------------------------------------------------------------------------------- /fastevent/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/inttypes.h -------------------------------------------------------------------------------- /fastevent/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/jconfig.h -------------------------------------------------------------------------------- /fastevent/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/jerror.h -------------------------------------------------------------------------------- /fastevent/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/jmorecfg.h -------------------------------------------------------------------------------- /fastevent/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/jpeglib.h -------------------------------------------------------------------------------- /fastevent/include/kadm5/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/kadm5/admin.h -------------------------------------------------------------------------------- /fastevent/include/kdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/kdb.h -------------------------------------------------------------------------------- /fastevent/include/keyutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/keyutils.h -------------------------------------------------------------------------------- /fastevent/include/krad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/krad.h -------------------------------------------------------------------------------- /fastevent/include/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/krb5.h -------------------------------------------------------------------------------- /fastevent/include/krb5/krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/krb5/krb5.h -------------------------------------------------------------------------------- /fastevent/include/krb5/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/krb5/plugin.h -------------------------------------------------------------------------------- /fastevent/include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/langinfo.h -------------------------------------------------------------------------------- /fastevent/include/lastlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lastlog.h -------------------------------------------------------------------------------- /fastevent/include/libaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/libaio.h -------------------------------------------------------------------------------- /fastevent/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/libgen.h -------------------------------------------------------------------------------- /fastevent/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/libintl.h -------------------------------------------------------------------------------- /fastevent/include/libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/libio.h -------------------------------------------------------------------------------- /fastevent/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/limits.h -------------------------------------------------------------------------------- /fastevent/include/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/link.h -------------------------------------------------------------------------------- /fastevent/include/linux/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/a.out.h -------------------------------------------------------------------------------- /fastevent/include/linux/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/acct.h -------------------------------------------------------------------------------- /fastevent/include/linux/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/adb.h -------------------------------------------------------------------------------- /fastevent/include/linux/arcfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/arcfb.h -------------------------------------------------------------------------------- /fastevent/include/linux/atalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/atalk.h -------------------------------------------------------------------------------- /fastevent/include/linux/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/atm.h -------------------------------------------------------------------------------- /fastevent/include/linux/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/audit.h -------------------------------------------------------------------------------- /fastevent/include/linux/ax25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ax25.h -------------------------------------------------------------------------------- /fastevent/include/linux/b1lli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/b1lli.h -------------------------------------------------------------------------------- /fastevent/include/linux/blkpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/blkpg.h -------------------------------------------------------------------------------- /fastevent/include/linux/bsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/bsg.h -------------------------------------------------------------------------------- /fastevent/include/linux/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/btrfs.h -------------------------------------------------------------------------------- /fastevent/include/linux/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/can.h -------------------------------------------------------------------------------- /fastevent/include/linux/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/capi.h -------------------------------------------------------------------------------- /fastevent/include/linux/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/cdrom.h -------------------------------------------------------------------------------- /fastevent/include/linux/chio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/chio.h -------------------------------------------------------------------------------- /fastevent/include/linux/coda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/coda.h -------------------------------------------------------------------------------- /fastevent/include/linux/coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/coff.h -------------------------------------------------------------------------------- /fastevent/include/linux/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/const.h -------------------------------------------------------------------------------- /fastevent/include/linux/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/cuda.h -------------------------------------------------------------------------------- /fastevent/include/linux/dcbnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/dcbnl.h -------------------------------------------------------------------------------- /fastevent/include/linux/dccp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/dccp.h -------------------------------------------------------------------------------- /fastevent/include/linux/dlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/dlm.h -------------------------------------------------------------------------------- /fastevent/include/linux/dn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/dn.h -------------------------------------------------------------------------------- /fastevent/include/linux/edd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/edd.h -------------------------------------------------------------------------------- /fastevent/include/linux/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/elf.h -------------------------------------------------------------------------------- /fastevent/include/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/linux/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fb.h -------------------------------------------------------------------------------- /fastevent/include/linux/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fcntl.h -------------------------------------------------------------------------------- /fastevent/include/linux/fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fd.h -------------------------------------------------------------------------------- /fastevent/include/linux/fdreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fdreg.h -------------------------------------------------------------------------------- /fastevent/include/linux/flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/flat.h -------------------------------------------------------------------------------- /fastevent/include/linux/fou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fou.h -------------------------------------------------------------------------------- /fastevent/include/linux/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fs.h -------------------------------------------------------------------------------- /fastevent/include/linux/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/fuse.h -------------------------------------------------------------------------------- /fastevent/include/linux/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/futex.h -------------------------------------------------------------------------------- /fastevent/include/linux/hdlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/hdlc.h -------------------------------------------------------------------------------- /fastevent/include/linux/hdreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/hdreg.h -------------------------------------------------------------------------------- /fastevent/include/linux/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/hid.h -------------------------------------------------------------------------------- /fastevent/include/linux/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/hpet.h -------------------------------------------------------------------------------- /fastevent/include/linux/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/i2c.h -------------------------------------------------------------------------------- /fastevent/include/linux/i8k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/i8k.h -------------------------------------------------------------------------------- /fastevent/include/linux/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/icmp.h -------------------------------------------------------------------------------- /fastevent/include/linux/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/if.h -------------------------------------------------------------------------------- /fastevent/include/linux/if_fc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/if_fc.h -------------------------------------------------------------------------------- /fastevent/include/linux/if_ppp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/linux/igmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/igmp.h -------------------------------------------------------------------------------- /fastevent/include/linux/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/in.h -------------------------------------------------------------------------------- /fastevent/include/linux/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/in6.h -------------------------------------------------------------------------------- /fastevent/include/linux/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/input.h -------------------------------------------------------------------------------- /fastevent/include/linux/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ioctl.h -------------------------------------------------------------------------------- /fastevent/include/linux/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ip.h -------------------------------------------------------------------------------- /fastevent/include/linux/ip_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ip_vs.h -------------------------------------------------------------------------------- /fastevent/include/linux/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ipc.h -------------------------------------------------------------------------------- /fastevent/include/linux/ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ipmi.h -------------------------------------------------------------------------------- /fastevent/include/linux/ipsec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ipsec.h -------------------------------------------------------------------------------- /fastevent/include/linux/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ipv6.h -------------------------------------------------------------------------------- /fastevent/include/linux/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ipx.h -------------------------------------------------------------------------------- /fastevent/include/linux/irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/irda.h -------------------------------------------------------------------------------- /fastevent/include/linux/irqnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/irqnr.h -------------------------------------------------------------------------------- /fastevent/include/linux/isdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/isdn.h -------------------------------------------------------------------------------- /fastevent/include/linux/ivtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ivtv.h -------------------------------------------------------------------------------- /fastevent/include/linux/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/jffs2.h -------------------------------------------------------------------------------- /fastevent/include/linux/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/kd.h -------------------------------------------------------------------------------- /fastevent/include/linux/kexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/kexec.h -------------------------------------------------------------------------------- /fastevent/include/linux/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/kvm.h -------------------------------------------------------------------------------- /fastevent/include/linux/l2tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/l2tp.h -------------------------------------------------------------------------------- /fastevent/include/linux/llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/llc.h -------------------------------------------------------------------------------- /fastevent/include/linux/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/loop.h -------------------------------------------------------------------------------- /fastevent/include/linux/lp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/lp.h -------------------------------------------------------------------------------- /fastevent/include/linux/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/magic.h -------------------------------------------------------------------------------- /fastevent/include/linux/major.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/major.h -------------------------------------------------------------------------------- /fastevent/include/linux/mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mdio.h -------------------------------------------------------------------------------- /fastevent/include/linux/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/media.h -------------------------------------------------------------------------------- /fastevent/include/linux/mei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mei.h -------------------------------------------------------------------------------- /fastevent/include/linux/memfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/memfd.h -------------------------------------------------------------------------------- /fastevent/include/linux/meye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/meye.h -------------------------------------------------------------------------------- /fastevent/include/linux/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mii.h -------------------------------------------------------------------------------- /fastevent/include/linux/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mman.h -------------------------------------------------------------------------------- /fastevent/include/linux/mpls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mpls.h -------------------------------------------------------------------------------- /fastevent/include/linux/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/msg.h -------------------------------------------------------------------------------- /fastevent/include/linux/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/mtio.h -------------------------------------------------------------------------------- /fastevent/include/linux/nbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nbd.h -------------------------------------------------------------------------------- /fastevent/include/linux/ncp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ncp.h -------------------------------------------------------------------------------- /fastevent/include/linux/ndctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ndctl.h -------------------------------------------------------------------------------- /fastevent/include/linux/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/net.h -------------------------------------------------------------------------------- /fastevent/include/linux/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nfc.h -------------------------------------------------------------------------------- /fastevent/include/linux/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nfs.h -------------------------------------------------------------------------------- /fastevent/include/linux/nfs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nfs2.h -------------------------------------------------------------------------------- /fastevent/include/linux/nfs3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nfs3.h -------------------------------------------------------------------------------- /fastevent/include/linux/nfs4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nfs4.h -------------------------------------------------------------------------------- /fastevent/include/linux/nubus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nubus.h -------------------------------------------------------------------------------- /fastevent/include/linux/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/nvram.h -------------------------------------------------------------------------------- /fastevent/include/linux/oom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/oom.h -------------------------------------------------------------------------------- /fastevent/include/linux/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/param.h -------------------------------------------------------------------------------- /fastevent/include/linux/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/pci.h -------------------------------------------------------------------------------- /fastevent/include/linux/pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/pg.h -------------------------------------------------------------------------------- /fastevent/include/linux/pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/pmu.h -------------------------------------------------------------------------------- /fastevent/include/linux/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/linux/ppdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/ppdev.h -------------------------------------------------------------------------------- /fastevent/include/linux/pps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/pps.h -------------------------------------------------------------------------------- /fastevent/include/linux/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/prctl.h -------------------------------------------------------------------------------- /fastevent/include/linux/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/quota.h -------------------------------------------------------------------------------- /fastevent/include/linux/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/raw.h -------------------------------------------------------------------------------- /fastevent/include/linux/rds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/rds.h -------------------------------------------------------------------------------- /fastevent/include/linux/rose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/rose.h -------------------------------------------------------------------------------- /fastevent/include/linux/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/route.h -------------------------------------------------------------------------------- /fastevent/include/linux/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/rtc.h -------------------------------------------------------------------------------- /fastevent/include/linux/scc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/scc.h -------------------------------------------------------------------------------- /fastevent/include/linux/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sched.h -------------------------------------------------------------------------------- /fastevent/include/linux/sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sctp.h -------------------------------------------------------------------------------- /fastevent/include/linux/sdla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sdla.h -------------------------------------------------------------------------------- /fastevent/include/linux/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sem.h -------------------------------------------------------------------------------- /fastevent/include/linux/serio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/serio.h -------------------------------------------------------------------------------- /fastevent/include/linux/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/shm.h -------------------------------------------------------------------------------- /fastevent/include/linux/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/snmp.h -------------------------------------------------------------------------------- /fastevent/include/linux/som.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/som.h -------------------------------------------------------------------------------- /fastevent/include/linux/sonet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sonet.h -------------------------------------------------------------------------------- /fastevent/include/linux/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/sound.h -------------------------------------------------------------------------------- /fastevent/include/linux/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/stat.h -------------------------------------------------------------------------------- /fastevent/include/linux/stddef.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastevent/include/linux/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/swab.h -------------------------------------------------------------------------------- /fastevent/include/linux/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/tcp.h -------------------------------------------------------------------------------- /fastevent/include/linux/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/time.h -------------------------------------------------------------------------------- /fastevent/include/linux/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/times.h -------------------------------------------------------------------------------- /fastevent/include/linux/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/timex.h -------------------------------------------------------------------------------- /fastevent/include/linux/tiocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/tiocl.h -------------------------------------------------------------------------------- /fastevent/include/linux/tipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/tipc.h -------------------------------------------------------------------------------- /fastevent/include/linux/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/tty.h -------------------------------------------------------------------------------- /fastevent/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/types.h -------------------------------------------------------------------------------- /fastevent/include/linux/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/udp.h -------------------------------------------------------------------------------- /fastevent/include/linux/uhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/uhid.h -------------------------------------------------------------------------------- /fastevent/include/linux/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/uio.h -------------------------------------------------------------------------------- /fastevent/include/linux/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/un.h -------------------------------------------------------------------------------- /fastevent/include/linux/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/utime.h -------------------------------------------------------------------------------- /fastevent/include/linux/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/uuid.h -------------------------------------------------------------------------------- /fastevent/include/linux/veth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/veth.h -------------------------------------------------------------------------------- /fastevent/include/linux/vfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/vfio.h -------------------------------------------------------------------------------- /fastevent/include/linux/vhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/vhost.h -------------------------------------------------------------------------------- /fastevent/include/linux/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/vt.h -------------------------------------------------------------------------------- /fastevent/include/linux/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/wait.h -------------------------------------------------------------------------------- /fastevent/include/linux/wimax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/wimax.h -------------------------------------------------------------------------------- /fastevent/include/linux/x25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/x25.h -------------------------------------------------------------------------------- /fastevent/include/linux/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/xattr.h -------------------------------------------------------------------------------- /fastevent/include/linux/xfrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/linux/xfrm.h -------------------------------------------------------------------------------- /fastevent/include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/locale.h -------------------------------------------------------------------------------- /fastevent/include/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma.h -------------------------------------------------------------------------------- /fastevent/include/lzma/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/base.h -------------------------------------------------------------------------------- /fastevent/include/lzma/bcj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/bcj.h -------------------------------------------------------------------------------- /fastevent/include/lzma/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/block.h -------------------------------------------------------------------------------- /fastevent/include/lzma/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/check.h -------------------------------------------------------------------------------- /fastevent/include/lzma/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/delta.h -------------------------------------------------------------------------------- /fastevent/include/lzma/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/filter.h -------------------------------------------------------------------------------- /fastevent/include/lzma/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/index.h -------------------------------------------------------------------------------- /fastevent/include/lzma/lzma12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/lzma12.h -------------------------------------------------------------------------------- /fastevent/include/lzma/vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/lzma/vli.h -------------------------------------------------------------------------------- /fastevent/include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/malloc.h -------------------------------------------------------------------------------- /fastevent/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/math.h -------------------------------------------------------------------------------- /fastevent/include/mcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/mcheck.h -------------------------------------------------------------------------------- /fastevent/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/memory.h -------------------------------------------------------------------------------- /fastevent/include/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/menu.h -------------------------------------------------------------------------------- /fastevent/include/misc/cxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/misc/cxl.h -------------------------------------------------------------------------------- /fastevent/include/mntent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/mntent.h -------------------------------------------------------------------------------- /fastevent/include/monetary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/monetary.h -------------------------------------------------------------------------------- /fastevent/include/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/mqueue.h -------------------------------------------------------------------------------- /fastevent/include/mtd/mtd-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/mtd/mtd-abi.h -------------------------------------------------------------------------------- /fastevent/include/nc_tparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/nc_tparm.h -------------------------------------------------------------------------------- /fastevent/include/ncurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ncurses.h -------------------------------------------------------------------------------- /fastevent/include/ncurses/eti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ncurses/eti.h -------------------------------------------------------------------------------- /fastevent/include/ncurses/tic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ncurses/tic.h -------------------------------------------------------------------------------- /fastevent/include/ncurses_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ncurses_dll.h -------------------------------------------------------------------------------- /fastevent/include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/net/if.h -------------------------------------------------------------------------------- /fastevent/include/net/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/net/if_arp.h -------------------------------------------------------------------------------- /fastevent/include/net/if_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/net/if_ppp.h -------------------------------------------------------------------------------- /fastevent/include/net/if_slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/net/if_slip.h -------------------------------------------------------------------------------- /fastevent/include/net/ppp-comp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/net/route.h -------------------------------------------------------------------------------- /fastevent/include/netash/ash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netash/ash.h -------------------------------------------------------------------------------- /fastevent/include/netatalk/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netatalk/at.h -------------------------------------------------------------------------------- /fastevent/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netdb.h -------------------------------------------------------------------------------- /fastevent/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netinet/in.h -------------------------------------------------------------------------------- /fastevent/include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netinet/ip.h -------------------------------------------------------------------------------- /fastevent/include/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netinet/ip6.h -------------------------------------------------------------------------------- /fastevent/include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netinet/tcp.h -------------------------------------------------------------------------------- /fastevent/include/netinet/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netinet/udp.h -------------------------------------------------------------------------------- /fastevent/include/netipx/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/netipx/ipx.h -------------------------------------------------------------------------------- /fastevent/include/nfs/nfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/nl_types.h -------------------------------------------------------------------------------- /fastevent/include/nss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/nss.h -------------------------------------------------------------------------------- /fastevent/include/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/obstack.h -------------------------------------------------------------------------------- /fastevent/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/aes.h -------------------------------------------------------------------------------- /fastevent/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/bio.h -------------------------------------------------------------------------------- /fastevent/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/bn.h -------------------------------------------------------------------------------- /fastevent/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/cms.h -------------------------------------------------------------------------------- /fastevent/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/des.h -------------------------------------------------------------------------------- /fastevent/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/dh.h -------------------------------------------------------------------------------- /fastevent/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/dsa.h -------------------------------------------------------------------------------- /fastevent/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/dso.h -------------------------------------------------------------------------------- /fastevent/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/ec.h -------------------------------------------------------------------------------- /fastevent/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/err.h -------------------------------------------------------------------------------- /fastevent/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/evp.h -------------------------------------------------------------------------------- /fastevent/include/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/md2.h -------------------------------------------------------------------------------- /fastevent/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/md4.h -------------------------------------------------------------------------------- /fastevent/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/md5.h -------------------------------------------------------------------------------- /fastevent/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/pem.h -------------------------------------------------------------------------------- /fastevent/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/rc2.h -------------------------------------------------------------------------------- /fastevent/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/rc4.h -------------------------------------------------------------------------------- /fastevent/include/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/rc5.h -------------------------------------------------------------------------------- /fastevent/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/rsa.h -------------------------------------------------------------------------------- /fastevent/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/sha.h -------------------------------------------------------------------------------- /fastevent/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/ssl.h -------------------------------------------------------------------------------- /fastevent/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/ts.h -------------------------------------------------------------------------------- /fastevent/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/openssl/ui.h -------------------------------------------------------------------------------- /fastevent/include/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/panel.h -------------------------------------------------------------------------------- /fastevent/include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/paths.h -------------------------------------------------------------------------------- /fastevent/include/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pcre.h -------------------------------------------------------------------------------- /fastevent/include/pcrecpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pcrecpp.h -------------------------------------------------------------------------------- /fastevent/include/pcrecpparg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pcrecpparg.h -------------------------------------------------------------------------------- /fastevent/include/pcreposix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pcreposix.h -------------------------------------------------------------------------------- /fastevent/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/png.h -------------------------------------------------------------------------------- /fastevent/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pngconf.h -------------------------------------------------------------------------------- /fastevent/include/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pnglibconf.h -------------------------------------------------------------------------------- /fastevent/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/pr29.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pr29.h -------------------------------------------------------------------------------- /fastevent/include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/printf.h -------------------------------------------------------------------------------- /fastevent/include/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/profile.h -------------------------------------------------------------------------------- /fastevent/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pthread.h -------------------------------------------------------------------------------- /fastevent/include/pty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pty.h -------------------------------------------------------------------------------- /fastevent/include/punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/punycode.h -------------------------------------------------------------------------------- /fastevent/include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/pwd.h -------------------------------------------------------------------------------- /fastevent/include/re_comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/re_comp.h -------------------------------------------------------------------------------- /fastevent/include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/regex.h -------------------------------------------------------------------------------- /fastevent/include/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/regexp.h -------------------------------------------------------------------------------- /fastevent/include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/resolv.h -------------------------------------------------------------------------------- /fastevent/include/rpc/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/auth.h -------------------------------------------------------------------------------- /fastevent/include/rpc/clnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/clnt.h -------------------------------------------------------------------------------- /fastevent/include/rpc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/netdb.h -------------------------------------------------------------------------------- /fastevent/include/rpc/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/rpc.h -------------------------------------------------------------------------------- /fastevent/include/rpc/rpc_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/rpc_des.h -------------------------------------------------------------------------------- /fastevent/include/rpc/rpc_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/rpc_msg.h -------------------------------------------------------------------------------- /fastevent/include/rpc/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/svc.h -------------------------------------------------------------------------------- /fastevent/include/rpc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/types.h -------------------------------------------------------------------------------- /fastevent/include/rpc/xdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpc/xdr.h -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/nis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/nis.h -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/nis.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/nis.x -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/rex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/rex.h -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/rex.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/rex.x -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/yp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/yp.h -------------------------------------------------------------------------------- /fastevent/include/rpcsvc/yp.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/rpcsvc/yp.x -------------------------------------------------------------------------------- /fastevent/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sched.h -------------------------------------------------------------------------------- /fastevent/include/scsi/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/scsi/scsi.h -------------------------------------------------------------------------------- /fastevent/include/scsi/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/scsi/sg.h -------------------------------------------------------------------------------- /fastevent/include/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/search.h -------------------------------------------------------------------------------- /fastevent/include/selinux/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/selinux/avc.h -------------------------------------------------------------------------------- /fastevent/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/semaphore.h -------------------------------------------------------------------------------- /fastevent/include/sepol/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/debug.h -------------------------------------------------------------------------------- /fastevent/include/sepol/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/nodes.h -------------------------------------------------------------------------------- /fastevent/include/sepol/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/ports.h -------------------------------------------------------------------------------- /fastevent/include/sepol/roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/roles.h -------------------------------------------------------------------------------- /fastevent/include/sepol/sepol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/sepol.h -------------------------------------------------------------------------------- /fastevent/include/sepol/users.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sepol/users.h -------------------------------------------------------------------------------- /fastevent/include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/setjmp.h -------------------------------------------------------------------------------- /fastevent/include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sgtty.h -------------------------------------------------------------------------------- /fastevent/include/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/shadow.h -------------------------------------------------------------------------------- /fastevent/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/signal.h -------------------------------------------------------------------------------- /fastevent/include/sound/asoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sound/asoc.h -------------------------------------------------------------------------------- /fastevent/include/sound/hdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sound/hdsp.h -------------------------------------------------------------------------------- /fastevent/include/sound/hdspm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sound/hdspm.h -------------------------------------------------------------------------------- /fastevent/include/sound/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sound/tlv.h -------------------------------------------------------------------------------- /fastevent/include/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/spawn.h -------------------------------------------------------------------------------- /fastevent/include/stab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stab.h -------------------------------------------------------------------------------- /fastevent/include/stdc-predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stdc-predef.h -------------------------------------------------------------------------------- /fastevent/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stdint.h -------------------------------------------------------------------------------- /fastevent/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stdio.h -------------------------------------------------------------------------------- /fastevent/include/stdio_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stdio_ext.h -------------------------------------------------------------------------------- /fastevent/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stdlib.h -------------------------------------------------------------------------------- /fastevent/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/string.h -------------------------------------------------------------------------------- /fastevent/include/stringprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/stringprep.h -------------------------------------------------------------------------------- /fastevent/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/strings.h -------------------------------------------------------------------------------- /fastevent/include/sys/acct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/acct.h -------------------------------------------------------------------------------- /fastevent/include/sys/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/auxv.h -------------------------------------------------------------------------------- /fastevent/include/sys/bitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/bitypes.h -------------------------------------------------------------------------------- /fastevent/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/cdefs.h -------------------------------------------------------------------------------- /fastevent/include/sys/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/dir.h -------------------------------------------------------------------------------- /fastevent/include/sys/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/elf.h -------------------------------------------------------------------------------- /fastevent/include/sys/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/epoll.h -------------------------------------------------------------------------------- /fastevent/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/eventfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/eventfd.h -------------------------------------------------------------------------------- /fastevent/include/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/file.h -------------------------------------------------------------------------------- /fastevent/include/sys/fsuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/fsuid.h -------------------------------------------------------------------------------- /fastevent/include/sys/gmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/gmon.h -------------------------------------------------------------------------------- /fastevent/include/sys/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/inotify.h -------------------------------------------------------------------------------- /fastevent/include/sys/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/io.h -------------------------------------------------------------------------------- /fastevent/include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/ioctl.h -------------------------------------------------------------------------------- /fastevent/include/sys/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/ipc.h -------------------------------------------------------------------------------- /fastevent/include/sys/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/kd.h -------------------------------------------------------------------------------- /fastevent/include/sys/kdaemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/kdaemon.h -------------------------------------------------------------------------------- /fastevent/include/sys/klog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/klog.h -------------------------------------------------------------------------------- /fastevent/include/sys/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/mman.h -------------------------------------------------------------------------------- /fastevent/include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/mount.h -------------------------------------------------------------------------------- /fastevent/include/sys/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/msg.h -------------------------------------------------------------------------------- /fastevent/include/sys/mtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/mtio.h -------------------------------------------------------------------------------- /fastevent/include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/param.h -------------------------------------------------------------------------------- /fastevent/include/sys/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/pci.h -------------------------------------------------------------------------------- /fastevent/include/sys/perm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/perm.h -------------------------------------------------------------------------------- /fastevent/include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/poll.h -------------------------------------------------------------------------------- /fastevent/include/sys/prctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/prctl.h -------------------------------------------------------------------------------- /fastevent/include/sys/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/procfs.h -------------------------------------------------------------------------------- /fastevent/include/sys/profil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/profil.h -------------------------------------------------------------------------------- /fastevent/include/sys/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/ptrace.h -------------------------------------------------------------------------------- /fastevent/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/queue.h -------------------------------------------------------------------------------- /fastevent/include/sys/quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/quota.h -------------------------------------------------------------------------------- /fastevent/include/sys/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/raw.h -------------------------------------------------------------------------------- /fastevent/include/sys/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/reboot.h -------------------------------------------------------------------------------- /fastevent/include/sys/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/reg.h -------------------------------------------------------------------------------- /fastevent/include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/select.h -------------------------------------------------------------------------------- /fastevent/include/sys/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/sem.h -------------------------------------------------------------------------------- /fastevent/include/sys/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/shm.h -------------------------------------------------------------------------------- /fastevent/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/socket.h -------------------------------------------------------------------------------- /fastevent/include/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/stat.h -------------------------------------------------------------------------------- /fastevent/include/sys/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/statfs.h -------------------------------------------------------------------------------- /fastevent/include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/statvfs.h -------------------------------------------------------------------------------- /fastevent/include/sys/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/swap.h -------------------------------------------------------------------------------- /fastevent/include/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/syscall.h -------------------------------------------------------------------------------- /fastevent/include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/sysctl.h -------------------------------------------------------------------------------- /fastevent/include/sys/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/sysinfo.h -------------------------------------------------------------------------------- /fastevent/include/sys/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/syslog.h -------------------------------------------------------------------------------- /fastevent/include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/termios.h -------------------------------------------------------------------------------- /fastevent/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/time.h -------------------------------------------------------------------------------- /fastevent/include/sys/timeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/timeb.h -------------------------------------------------------------------------------- /fastevent/include/sys/timerfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/timerfd.h -------------------------------------------------------------------------------- /fastevent/include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/times.h -------------------------------------------------------------------------------- /fastevent/include/sys/timex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/timex.h -------------------------------------------------------------------------------- /fastevent/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/types.h -------------------------------------------------------------------------------- /fastevent/include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/uio.h -------------------------------------------------------------------------------- /fastevent/include/sys/ultrasound.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/un.h -------------------------------------------------------------------------------- /fastevent/include/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/user.h -------------------------------------------------------------------------------- /fastevent/include/sys/ustat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/ustat.h -------------------------------------------------------------------------------- /fastevent/include/sys/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/utsname.h -------------------------------------------------------------------------------- /fastevent/include/sys/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/vfs.h -------------------------------------------------------------------------------- /fastevent/include/sys/vlimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/vlimit.h -------------------------------------------------------------------------------- /fastevent/include/sys/vm86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/vm86.h -------------------------------------------------------------------------------- /fastevent/include/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sys/vtimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/vtimes.h -------------------------------------------------------------------------------- /fastevent/include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/wait.h -------------------------------------------------------------------------------- /fastevent/include/sys/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sys/xattr.h -------------------------------------------------------------------------------- /fastevent/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/sysexits.h -------------------------------------------------------------------------------- /fastevent/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/tar.h -------------------------------------------------------------------------------- /fastevent/include/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/term.h -------------------------------------------------------------------------------- /fastevent/include/term_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/term_entry.h -------------------------------------------------------------------------------- /fastevent/include/termcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/termcap.h -------------------------------------------------------------------------------- /fastevent/include/termio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/termio.h -------------------------------------------------------------------------------- /fastevent/include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/termios.h -------------------------------------------------------------------------------- /fastevent/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/tgmath.h -------------------------------------------------------------------------------- /fastevent/include/thread_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/thread_db.h -------------------------------------------------------------------------------- /fastevent/include/tic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/tic.h -------------------------------------------------------------------------------- /fastevent/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/time.h -------------------------------------------------------------------------------- /fastevent/include/tld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/tld.h -------------------------------------------------------------------------------- /fastevent/include/ttyent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ttyent.h -------------------------------------------------------------------------------- /fastevent/include/uchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/uchar.h -------------------------------------------------------------------------------- /fastevent/include/ucontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ucontext.h -------------------------------------------------------------------------------- /fastevent/include/ulimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/ulimit.h -------------------------------------------------------------------------------- /fastevent/include/unctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/unctrl.h -------------------------------------------------------------------------------- /fastevent/include/unicode/bms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/unicode/bms.h -------------------------------------------------------------------------------- /fastevent/include/unicode/rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/unicode/rep.h -------------------------------------------------------------------------------- /fastevent/include/unicode/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/unicode/utf.h -------------------------------------------------------------------------------- /fastevent/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/unistd.h -------------------------------------------------------------------------------- /fastevent/include/ustat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/utime.h -------------------------------------------------------------------------------- /fastevent/include/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/utmp.h -------------------------------------------------------------------------------- /fastevent/include/utmpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/utmpx.h -------------------------------------------------------------------------------- /fastevent/include/uuid/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/uuid/uuid.h -------------------------------------------------------------------------------- /fastevent/include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/values.h -------------------------------------------------------------------------------- /fastevent/include/verto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/verto.h -------------------------------------------------------------------------------- /fastevent/include/video/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/video/edid.h -------------------------------------------------------------------------------- /fastevent/include/video/sisfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/video/sisfb.h -------------------------------------------------------------------------------- /fastevent/include/wait.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /fastevent/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/wchar.h -------------------------------------------------------------------------------- /fastevent/include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/wctype.h -------------------------------------------------------------------------------- /fastevent/include/wordexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/wordexp.h -------------------------------------------------------------------------------- /fastevent/include/xcb/bigreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/bigreq.h -------------------------------------------------------------------------------- /fastevent/include/xcb/damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/damage.h -------------------------------------------------------------------------------- /fastevent/include/xcb/dpms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/dpms.h -------------------------------------------------------------------------------- /fastevent/include/xcb/dri2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/dri2.h -------------------------------------------------------------------------------- /fastevent/include/xcb/dri3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/dri3.h -------------------------------------------------------------------------------- /fastevent/include/xcb/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/ge.h -------------------------------------------------------------------------------- /fastevent/include/xcb/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/glx.h -------------------------------------------------------------------------------- /fastevent/include/xcb/present.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/present.h -------------------------------------------------------------------------------- /fastevent/include/xcb/randr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/randr.h -------------------------------------------------------------------------------- /fastevent/include/xcb/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/record.h -------------------------------------------------------------------------------- /fastevent/include/xcb/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/render.h -------------------------------------------------------------------------------- /fastevent/include/xcb/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/res.h -------------------------------------------------------------------------------- /fastevent/include/xcb/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/shape.h -------------------------------------------------------------------------------- /fastevent/include/xcb/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/shm.h -------------------------------------------------------------------------------- /fastevent/include/xcb/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/sync.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xc_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xc_misc.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xcb.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xcbext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xcbext.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xevie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xevie.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xf86dri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xf86dri.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xfixes.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xinput.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xkb.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xprint.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xproto.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xtest.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xv.h -------------------------------------------------------------------------------- /fastevent/include/xcb/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xcb/xvmc.h -------------------------------------------------------------------------------- /fastevent/include/xen/evtchn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xen/evtchn.h -------------------------------------------------------------------------------- /fastevent/include/xen/privcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xen/privcmd.h -------------------------------------------------------------------------------- /fastevent/include/xlocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/xlocale.h -------------------------------------------------------------------------------- /fastevent/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/zconf.h -------------------------------------------------------------------------------- /fastevent/include/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/zip.h -------------------------------------------------------------------------------- /fastevent/include/zipconf-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/zipconf-64.h -------------------------------------------------------------------------------- /fastevent/include/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/zipconf.h -------------------------------------------------------------------------------- /fastevent/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/fastevent/include/zlib.h -------------------------------------------------------------------------------- /虚拟化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/虚拟化.md -------------------------------------------------------------------------------- /虚拟化.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderspig/Unix-Net/HEAD/虚拟化.pdf --------------------------------------------------------------------------------