- 论坛徽章:
- 0
|
默认一个进程的FD是 0~1023,一般来说够用了。
- #include <stdio.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- int main(int argc,char *argv[])
- {
- int i;
- int sk;
- int sa[1027];
- for(i = 3;i < 1027;i ++)
- {
- if((sk = socket(AF_INET,SOCK_STREAM,0)) == -1)
- perror("socket");
- else
- {
- sa[i] = sk;
- printf("fd[%d] = %d\n",i,sk);
- }
- /* 超过默认数FD,则关闭掉以重用,所以上面的socket调用应当不会返回错误才对! */
- if( i >= 1023)
- {
- printf("close(%d)\n",sk);
- close(sk);
- }
- }
- return 0;
- }
复制代码
另附 close() 的 部分manpage:
close() closes a file descriptor, so that it no longer refers to any file and may be reused.Any record locks (see fcntl(2)) held on the file it was associated with, and owned by the process, are removed (regardless of the file descriptor that was used to obtain the lock).
If fd is the last copy of a particular file descriptor the resources associated with it are freed; if the descriptor was the last reference to a file which has been removed using unlink(2) the file is deleted.
[ 本帖最后由 shello 于 2007-6-8 11:02 编辑 ] |
|