Generally, a file descriptor is an index for an entry in a kernel-resident data structure containing the details of all open files. In POSIX this data structure is called a file descriptor table, and each process has its own file descriptor table. In Microsoft Windows terminology and in the context ...

learn more… | top users | synonyms (1)

0
votes
1answer
36 views

Unexpected value read from socket fd

Implementing a TCP server/client chat, I wanted to validate that the username of a new client doesn't exist already. The server's code part is: do { err=0; if(write(socketFd[(int)idx], ...
1
vote
1answer
19 views

read() on a NON-BLOCKING tun/tap file descriptor gets EAGAIN error

I want to read IP packets from a non-blocking tun/tap file descriptor tunfd I set the tunfd as non-blocking and register a READ_EV event for it in libevent. when the event is triggered, I read the ...
0
votes
1answer
12 views

How to block until all file descriptors are ready? Use select()/poll()/epoll()?

I am in the situation where I would like a C program to block on a set of file descriptors until all files are ready. This differs from the traditional select(), poll(), and epoll() system calls that ...
2
votes
1answer
36 views

How to monitor a file descriptor for new data availability?

Consider the following code snippet. #include <fcntl.h> #include <stdio.h> #include <sys/poll.h> #include <unistd.h> int main(int argc, char ** argv) { int fd; char ...
1
vote
0answers
42 views

MediaRecorder start() fail if called too quickly

I am attempting to build a basic camcorder that allows the user to take videos rapidly by touching the screen, this seemed straight forward however the major problem I have run into is that the ...
0
votes
1answer
58 views

How to get file path using file descriptor on Android?

I need to get file absolute path using file descriptor which was returned by getFileDescriptor(). How can i do it?
1
vote
1answer
31 views

Dynamic generation of file contents (poor man's proc file)

I'm trying to make a simple userspace program that dynamically generates file contents when a file is read, much like a virtual filesystem. I know there are programs like FUSE, but they seem a bit ...
0
votes
2answers
61 views

C: No such file or directory

when I hard code chemin in open(chemin, O_RDONLY) to a file name, the program works, but when I leave if to open(chemin, O_RDONLY) I get No such file or directory. Why isn't chemin in type_fichier ...
0
votes
0answers
14 views

Nginx File descriptor limit

How can I increase the file descriptors limit in nginx? There are several ways to increase file descriptors: Edit /etc/security/limits.conf and set nofile soft and hard limits for the nginx user. ...
0
votes
2answers
35 views

adding new sockets to epoll instances other than the epoll instance that polls the listening socket

The situation: Multiple processes share the same file descriptor table. Each process listens to its own epoll instance. All sockets and calls involving them are non-blocking. Among those processes, ...
3
votes
1answer
64 views

dup() followed by close() from multiple threads or processes

My program does the following in chronological order The program is started with root permissions. Among other tasks, A file only readable with root permissions is open()ed. Root privileges are ...
0
votes
3answers
55 views

Write at specific position at a file with open()

Hello I am trying to simulate two programs that send and receive files in C++ from the network, something like client and server. To begin with I have to split a file to pages of 4096 bytes and send ...
0
votes
1answer
27 views

Redirect a method call to something with a file descriptor - asyncore

We have a network client based on asyncore with the user's network connection is embodied in a Dispatcher. The goal is for a user working from an interactive terminal to be able to enter network ...
0
votes
1answer
31 views

capturing EOF sent from netcat

I am implementing a multi threaded chat server just to learn. I am connecting clients through netcat. I need to broadcast the message received by a client to other connected clients. That part is ...
0
votes
2answers
75 views

C program, strange behaviour

Recently I came across the problem of geting 'Oops, Spwan error, can not allocate memory' while working with one C Application. To understand the File Descriptor and Memory management better I give a ...
0
votes
3answers
62 views

closing a file descriptor and then using it

Below is a code segment which explains dup2 system call. What I don't understand is, after duplicating both file descriptors why do we need to close the old file descriptor. Since "out" descriptor is ...
0
votes
0answers
45 views

Automatically Remove/delete File descriptor

Recently I come acorss a strange problem. A Program running as a daemon and creates File descriptor and it constantly increase. I can count from the /proc/{pid}/fd/. File descriptor constantly ...
0
votes
2answers
27 views

Socket programming and arrays

Hello i am trying to create 2 programms that communicate throught TCP sockets, on C++. I know how to use write() and read() functions but I encounter a problem when I try to send array from one ...
0
votes
0answers
40 views

OSB - BEA-000409 - Cannot get fd for sock=Socket[addr=our.proxy.server/xx.xxx.xxx.xxx,port=8080,localport=59719]]

we have a problem in our development environment. We are on WLS 10.3 , windows server 2008 R2 enterprise, jdk1.6.0_45 64bit. We use OSB paltform and we try to invoke an external web service which is ...
0
votes
1answer
100 views

Select in C, why does it fail?

I'm reviewing a code in C with select(2) function. In this code, select function should return a number different from 0 when any of a set of two sockets it's ready. However it fails to find any file ...
0
votes
1answer
34 views

FD_ISSET returns 0 after FD_SET

I have the following code: FD_SET(mc_sock, &readfds); foo = FD_ISSET(mc_sock, &readfds); // returns 1 // Wait until some socket on the set is ready to be read while(select ...
-1
votes
0answers
23 views

How to find speed of wlan interface? [closed]

I'm trying to find speed of network interface using file-descriptor. I't easy to do it for ethX, just calling cat /sys/class/net/eth0/speed. Unfortunately this method doesn't work with wireless ...
0
votes
1answer
30 views

Closing stdin stdout and stderr the ptunnel way

I was intrigued by the way ptunnel closes stdin, stdout and stderr: if (daemonize) { ... freopen("/dev/null", "r", stdin); freopen("/dev/null", "w", stdout); freopen("/dev/null", "w", ...
2
votes
2answers
76 views

What does write(2) return of zero mean and will I eventually make progress (non-zero result)?

I have a socket over TCP that I am writing to in a C++03 program. In some cases, I get a zero return result from write(). The write(2) man page states in part: On success, the number of bytes ...
4
votes
1answer
75 views

Is it reasonable to expect that in Linux, fd < maximum number of open file descriptors?

I'm writing a server that needs to handle many open sockets, so I use setrlimit() to set the maximum number of open file descriptors (as root, before dropping privileges) like so: #include ...
1
vote
1answer
45 views

the speed of read and write system call on shared memory object in comparison with one of memcpy

I' using shared memory (with semaphore) for communicating between two processes: Fist, I open shared memory object using the call: int fd = shm_open("name") [http://linux.die.net/man/3/shm_open] ...
0
votes
0answers
24 views

Create file descriptor in Java to use from a unique shell on Android

I am trying to run 2 commands on a single shell simultaneously from a Java application. It is mandatory that the app uses a single shell and also that one command doesn't block the execution of the ...
1
vote
0answers
49 views

The read method on the inotify descriptor does not return

My program monitors changes on files using inotify(7) fd = inotify_init(); inotify_add_watch (fd, "./test.txt", IN_ALL_EVENTS); //start forever monitor while(true){ ssize_t len, i = 0; ...
0
votes
0answers
65 views

async_read_some of asio::stream_descriptor for file description from inotify_init() failed

I'm writing a asynchronous file monitoring program using boost::asio, based on the project: https://github.com/kvikas/file-monitor-service/tree/master/inotify This project uses ...
0
votes
1answer
23 views

Define same pipe to 2 diferent programs

im trying to pass values from one program to another using pipe. The first program create a pipe and then a son process with fork and in the part of the son process she execute with execlp another ...
1
vote
1answer
44 views

libevent kqueue doesn't work on fd returned from zmq_getsockopt()

ORIGINAL POST: I'm writing a service in C programming using libevent and zmq. Msg is pushed from python code to C service using PUSH-PULL pattern. fd received from zmq socket: void *receiver = ...
1
vote
1answer
49 views

How do Bash local file descriptors work?

I have looked but can't find any Bash guide that describes the details for how the following file descriptor syntax works: while read line <&3; do echo $line done 3<file.txt Is this a ...
0
votes
1answer
53 views

Initialize a static structure

In A.hh class A{ private: static struct pollfd fds[2]; } How should I initialize the structure in the A.cpp file?
2
votes
2answers
90 views

select() and poll() in Linux

So, I have been reading about select and poll man pages, but unfortunately, I am still confused about some things. It would nice if someone can answer the following questions for me: What happens ...
0
votes
1answer
32 views

How to reopen file descriptor 0, 1 and 2?

Say in the python REPL I, separately, called os.close with 0, 1 and 2 which are the standard input, output and error. How could I reopen/reinitialize them? Such that I would close them in the start of ...
0
votes
1answer
73 views

Unable to open file C

For the following snippet of code, I get an error Unable to open file: No such file or directory redirect_ptr is char** And I have tried printing redirect_ptr[0], it prints it correctly. Any idea ...
0
votes
2answers
50 views

How to do multiplexing I/O for read multiple file when the file size increase?

There are many files generated on network shared file system (NFS). There is a similar question without proper solution: inotify with NFS. I use select() to test if the file have new data could be ...
1
vote
1answer
48 views

Using File Descriptors with readlink()

I have a situation where I need to get a file name so that I can call the readlink() function. All I have is an integer that was originally stored as a file descriptor via an open() command. Problem ...
2
votes
2answers
82 views

How to read for X seconds maximum in C++?

I want my program to wait for something to read in a FIFO, but if the read (I use std::fstream) lasts more than 5 seconds, I want it to exit. Is it possible or do I have to use alarm absolutely? ...
0
votes
1answer
66 views

How to redirect stdout to stdin in Matlab? Aka how to manage file-descriptors?

My peers have created an extremely-hard-to-test novel structure where they use stdout for outputting results. Now I cannot change their code and I need to use their functions. Suppose a function ...
0
votes
1answer
38 views

Weird thing in file-descrpiter I/O for gpio port

I'm coding in Linux to control the gpio port on my board, using the following codes. However,the result from read() is always a 0x10, which is a hex for LF line feed. Voltage is an enum variable ...
1
vote
1answer
70 views

Can dup2 really return EINTR?

In the spec and two implementations: According to POSIX, dup2() may return EINTR. The linux man pages list it as permitted. The FreeBSD man pages indicate it's not ever returned. Is this a bug - ...
-2
votes
1answer
73 views

Increase FD limitation then SSH not working? [closed]

I'm using CentOS 6.3 64bit, and having trouble with increase FD limitation: SSH not working after changed the limitation, every-times I logged on my server, after typed password, then "connection ...
0
votes
1answer
91 views

how to tune OS level file descriptors for maximum boost ASIO performance [closed]

I'm building a websocket++ server, and I want to make sure I'm getting every last drop of performance out of it. zaphoyd, the author, has said that OS level file descriptors must be properly tuned to ...
1
vote
2answers
76 views

Terminating a blocked pthreads thread

I Have a thread that reads data from a file descriptor, using select() to block until the data is available. When the program needs to terminate, I need to close the thread, however it's blocked on ...
0
votes
1answer
34 views

How to copy the file description when forking instead of sharing?

When a process forks, the child will share with its parent the file description that was open before the forking. Is there a way to make the child have its own copy of the file description (that ...
0
votes
3answers
74 views

Writing to two file descriptors by only one operation

I want to implement logging functionality in C and log messages to both stdout and some file. I would like to write something like fprintf(logout, "msg"); with somehow declared FILE* logout which will ...
0
votes
2answers
55 views

What's a file descriptor's “exception”?

When one calls select() asking which file descriptors have "exceptions" waiting, what does that mean? How does one trigger one of these "exceptions"? If anyone can point me to a nice explanation, ...
1
vote
2answers
113 views

Can I pass a file descriptor over a 0mq (zeromq) ipc socket?

I have a master process and several workers, communicating using 0mq 'ipc://' sockets (UNIX domain sockets). I want to pass a file descriptor from the master to a worker, along with a message. I know ...
-3
votes
2answers
52 views

call to write() fails unknown reason

I open a file with open(), I checked my file descriptor and seems to be ok (3). But when I try to write on this fd, write() returns -1. I also print my string, which is shown correctly. errno = 9, ...

1 2 3 4 5 8