Tagged Questions
7
votes
4answers
4k views
Portable way to pass file descriptor between different processes
On most UNIX systems passing an open file between processes can be easily done for child/parent processes by fork(); however I need to share a fd "after" the child was already forked.
I've found some ...
4
votes
2answers
620 views
Multiple file descriptors to the same file, C
I have a multithreaded application that is opening and reading the same file (not writing). I am opening a different file descriptor for each thread (but they all point to the same file). Each thread ...
2
votes
1answer
194 views
file descriptors and open files
I have two quick questions:
When do two file descriptors point to the same open file ?
When do two open files point to the same inode ?
Also, if you happen to have some good documentation with ...
1
vote
2answers
78 views
Reading input from a particular file descriptor
If I know that input to my program will come from a file descriptor with a (non standard) ID, how do I read from it?
For example, if I need to read from a file descriptor with the ID of 3, how do I ...
1
vote
2answers
232 views
two file descriptors to same file
Using the posix read() write() linux calls, is it guaranteed that if I write through one file descriptor and read through another file descriptor, in a serial fashion such that the two actions are ...
1
vote
3answers
168 views
Can I call shutdown twice on a file descriptor in C language?
I am using c .
I have fd1 as a file descriptor, can I call like this twice?
main () {
....
shutdown(fd1, SHUT_WR);
....
shutdown(fd1, SHUT_WR);
....
}
I personally think it works because fd1 has ...
1
vote
2answers
237 views
Abort linux polling
I am porting an audio mixer from directsound on Windows to alsa on Linux. I am polling on, let's say, 16 file descriptors using the system call "poll". Now i need to be able to abort the polling ...
1
vote
4answers
437 views
Simulating file descriptor in user space
I would like to implement a socket-like object in user space. There's an important requirement that it should be pollable (i.e. it's state should be queryable via select or poll call).
Is there a ...
0
votes
1answer
26 views
Node.js FIFO - process hangs when writing to file descriptor
I have the following Node.js code:
var fs=require('fs');
var util=require('util');
var n2c=fs.createReadStream('./n2c');
var c2n=fs.createReadStream('./c2n');
n2c.on('data', function(b){
...
0
votes
1answer
25 views
How to open and read 1000s of files very quickly
My problem is that application takes too long to load thousands of files. Yes, I know it's going to take a long time, but I would like to make it faster by any amount of time. What I mean by "load" ...
0
votes
1answer
92 views
How to protect our php5 , javascript and css files from hackers? [closed]
Hi If I create a desktop application using PHP, java-script, HTML, css then How can I protect my codes before giving to end user. Which is the secure files/codes encryption and decryption I need to ...
0
votes
1answer
60 views
File descriptor - parent and forked child
I'm writing a cgi program for my small webserver. That program then forks to create a child. As far as I know, parent and its children share the same file descriptor, so I expected to see the child's ...
0
votes
2answers
62 views
How to stop overflowing file descriptors in C
I am writing a message to a file descriptor that is 88kb. The file descriptor on my linux system only can hold 64kb. Once the data gets put on the file descriptor it gets read and piped into a tcp ...
0
votes
2answers
901 views
file descriptor leak in java program : too many open files
I have a program which suffer from file descriptor increasing.
I see when I execute the command ls -l /proc/5969/fd where 5969 is the pid of the java program the number of file descriptor continuously ...
0
votes
2answers
25 views
Is there a need for file descriptor control program/syscall?
I am currently thinking of implementing a syscall in some BSD flavours in order to close a given file descriptor.
The file descriptor would be defined as a pair of PID and file descriptor number.
It ...