FD_ZERO

#define FD_ZERO(set) (((fd_set FAR *)(set))->fd_count=0)

也就是把 fd_set 类型的set的fd_count设置成为0. 

你可能感兴趣的:(FD_ZERO)