收集了看一下C/C++标准库使用的相关网站:
GNU官网:
http://www.gnu.org/
GNU GCC官方使用手册(其中有介绍gcc使用的相关参数,应该好好研究一下!)
http://gcc.gnu.org/onlinedocs/
Linux C编程一站式学习
http://learn.akae....
int mz_epoll(void)
{
int listenfd,socketfd;
int epollfd,fds;
struct epoll_event en,evevts[MAX_EVENTS]
int i,rv;
epollfd = get_server_epoll_fd();
listenfd = ipv4_tcp_create_soc...