摘要:
编译内核 make meauconfig 后: Kernel hacking > Compile-time checks and compiler options > [*] Compile the kernel with debug info [*] Provide GDB scripts for 阅读全文
摘要:
select的作用 初学socket时,习惯使用connent、accept、recv或者recvfrom来阻塞程序。然而使用select可以完成非阻塞方式,监视需要被监视的文件描述符的变化情况——读写或异常。 相关数据结构 fd_set,实际是一个long int 类型的数组,其中的每一个 bit 阅读全文