4
votes
3answers
302 views
Duplicate file descriptor with its own file offset
How can one create a new file descriptor from an existing file descriptor such that the new descriptor does not share the same internal file structure/entry in the file table? Spec …
0
votes
4answers
196 views
How to read exactly one line?
I have a Linux file descriptor (from socket), and I want to read one line.
How to do it in C++?
0
votes
2answers
169 views
socket: Too many open files (24) apache bench lighttpd
When I start Apache Bench test:
ab -n 10000 -c 1300 http://domain.com/test.php
I get error:
socket: Too many open files (24)
When i change to '-c 1000' it works fine.
…
3
votes
4answers
456 views
Check the open FD limit for a given process in Linux
Hi,
I recently had a Linux process which "leaked" file descriptors: It opened them and didn't properly close some of them.
If I had monitored this, I could tell - in advance - th …
1
vote
2answers
147 views
Unix: seeing file handles like with “lsof -l”
I did the commands (source):
$ exec 3>/tmp/thirdfile
$ exec 4>/tmp/fourthfile
$ echo drib >&3
$ echo drab >&4
$ echo another drib >&3
$ echo another dra …
1
vote
6answers
217 views
Sockets & File Descriptor Reuse (or lack thereof)
Hi,
I am getting the error "Too many open files" after the call to socket in the server code below. This code is called repeatedly, and it only occurs just after server_SD gets t …
0
votes
1answer
42 views
N:1 file descriptors???
Is it possible to have N file descriptors be seen to a program as 1 file descriptor such that data received on any of the N file descriptors (ie from N sockets) will be forwarded b …
0
votes
1answer
119 views
Netbeans problem: Can’t add application descriptor, getting null pointer exceptions
When I try to add to the application descriptor in a Netbeans mobile project by clicking on 'Add' in the 'Application Descriptor' panel in the projecct config window nothing happen …
3
votes
1answer
96 views
Are there any standard input/ouput macros for read/write system calls in C?
All my searches returned nothing and I find it odd that there aren't any macros to use as file descriptors for read/write system calls for standard input and output instead of a 0 …
4
votes
3answers
485 views
Getting the highest allocated file descriptor
Is there a portable way (POSIX) to get the highest allocated file descriptor number for the current process?
I know that there's a nice way to get the number on AIX, for example, …
1
vote
2answers
703 views
Windows equivalent of ulimit -n
Hi,
What is the windows equivalent of the unix command " ulimit -n" ?
Basically, i want to set the maximum fd limit via command prompt.
1
vote
1answer
400 views
How to create a customized file descriptor on linux
I would like to create a file whose descriptor would have some customizable behavior. In particular, I'd like to create a file descriptor, which, when written to, would prefix ever …
1
vote
4answers
925 views
Is there a file descriptor leak when using sockets on a linux platform?
If I open and close a socket by calling for instance
Socket s = new Socket( ... );
s.setReuseAddress(true);
in = s.getInputStream();
...
in.close();
s.close();
Linux states tha …
1
vote
5answers
1k views
How to close a file descriptor from another process in unix systems
You can use command lsof to get file descriptors for all running processes, but what I would like to do is to close some of those descriptors without being inside that process. Thi …
2
votes
4answers
532 views
Is there a need to close file descriptors before exit?
Of course, the immediate answer for most situations is "yes", and I am a firm believer that a process should correctly cleanup any resources it has allocated, but what I have in my …
