epoll is a Linux 2.6 readiness notification API for sockets, pipes, and special event-, signal-, and timer descriptors which can operate both in level- and edge-triggered mode, although presently only level-triggered behaviour is in accordance with the documentation. As opposed to poll or select, ...
0
votes
0answers
27 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]
...
-4
votes
0answers
37 views
construct a database-alike table using C [closed]
I want to construct such a table in my program(linux C):
it has 3 items:
1 ip/port pair, 2 a FIFO queue pointer, 3 a process id or thread id
my program has two kinds of functions(or modules, ...
2
votes
1answer
35 views
Given any epoll TCP socket event, if EPOLLRDHUP=0 and EPOLLIN=1; is a subsequent call to read()/recv() guaranteed to return a read size unequal to 0?
From the manual of epoll_ctl:
EPOLLRDHUP (since Linux 2.6.17)
Stream socket peer closed connection, or shut down writing half of connection. (This flag is especially useful for writing simple ...
0
votes
0answers
42 views
Spurious wakeups on poll / select / epoll
I am using epoll (level-triggered mode) to poll a socket fd on EPOLLPRI | EPOLLIN event.
Sometimes (actually this rarely happens but it does sometimes!!) when running my program, epoll() informs me ...
0
votes
1answer
35 views
Does epoll have exponential backoff?
I have an application that, when it has data to transmit, uses epoll to know whether a given TCP socket can be written to.
What I'm observing is that as the far-end of the TCP connection falls ...
3
votes
2answers
180 views
Getting disconnection notification using TCP Keep-Alive on write blocked socket
I use TCP Keep-Alive option to detect dead connection. It works well with connection that use reading sockets:
setsockopt(mysock,...) // set various keep alive options
...
0
votes
0answers
21 views
Tuning epoll timeout in lighttpd
Is there a configuration option to tune epoll timeout in lighttpd? I'm developing an embedded Linux (2.6) device, with lighttpd 1.4.30. And I'm observing the following issue: even when the system is ...
0
votes
1answer
44 views
epoll with edge triggering, one shot and multithreading
This is a question regarding this answer: http://stackoverflow.com/a/14241095/2332808 (would comment it but newly created accounts apparently can't, sorry for the noise. Ressources on ...
0
votes
1answer
57 views
Multiple UDP sockets using epoll - Not able to receive data
Im trying to receive data from multiple UDP sockets using epoll. This is a test program it doesn't have exact number of sockets.( For testing purpose its set as 50.) The below program doesn't receive ...
0
votes
0answers
36 views
Is “epoll” faster than “select” even when there is only one connection?
I have tried in this way:Create a server and a client in same PC , and send a packet from client to server.Once server side receive the packet , it sends the same packet back to client . I looped this ...
0
votes
0answers
19 views
SOLVED packet received by machine but not obtained by epoll_wait?
info:
1, on the server:
a, an epoll instance X is created;
b, a UDP socket Y is created and binded to port 29366;
c, epoll_ctl is correctly used to let X manage Y
2, on the client:
keep ...
2
votes
0answers
26 views
Number of watched file descriptors inside a epoll
I am looking for a way to check the current number of file descriptors being monitored by an epoll instance. I use the following for creating and populating the epoll instance
epoll_create
epoll_ctl
...
0
votes
2answers
26 views
Is is possible to check if certain fd belongs to a epoll set?
Suppose I have a already constructed epoll set, is it possible to find out if a certain fd belongs to this epoll set? And is it possible to find out from this epoll set what events a certain fd is ...
3
votes
2answers
166 views
How to detect empty epoll set
I'm learning to use epoll, and I wrote the following example
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include ...
1
vote
1answer
22 views
How to detect when all previously registered events in epoll have been deregistered?
Suppose I register a finite number of events using epoll_ctl within some function. Now, over repeated calls to the same function I deregister every single one of these events a few at a time using:
...
0
votes
1answer
24 views
What happens with the remaining events if the number of events exceeds the maxevents argument given to epoll_wait()?
Is epoll chivalrous enough to hold onto the remaining events, and put them into the events array the next time epoll_wait() is called? Or does it simply trash them like a total jerk?
The man page ...
1
vote
1answer
38 views
Can not join ev loop thread since it is hanging in epoll_wait()
I'm using async hiredis with libev. mLoopThread is used here for ev loop thread, basically mLoopThread is calling ev_loop(). when main thread tries to destruct async hiredis instance, it calls ...
1
vote
0answers
92 views
Perl IO::Socket::UNIX DGRAM non-blocking socket blocks in a loop
Having an issue with socket block which I defined to be non-blocking.
This way I make a new socket:
unlink "/tmp/mysock";
$socket = IO::Socket::UNIX->new(Local => "/tmp/mysock",
...
0
votes
1answer
46 views
epoll and hash table in threads
I have mutli threaded application with worker threads, I'm using a hash table to route messages between two opend sd(socket descriptores), each thread is waiting with epoll_wait for a new connection ...
1
vote
1answer
82 views
epoll and send lag
I'm using Linux 64 bit Linux scv 3.2.0-39-generic #62-Ubuntu SMP Thu Feb 28 00:28:53 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux and have two processes using sockets which run on the same physical host.
...
0
votes
0answers
86 views
python twisted Unhandled Error
op system is centos 6.3 64bit
I made a chat server with python twisted 12.3 lineonlyreciver
after it keep running for sometime ,throw the message below time and time ,until I restart it
when the ...
0
votes
1answer
70 views
epoll (EPOLLET) depends on count of read bytes?
I use epoll in edge triggered mode. to avoid starvation the code read MAX_FREAD_LENGTH bytes at once from one socket. later assembles the fragments till EOL occurs. I noticed that the epoll stuck when ...
3
votes
1answer
45 views
Creating epoll()able objects
Is it possible to create an object that will support epoll()?
I assume the epoll_* system calls depending on a compatible system fd makes it difficult, if not impossible, to create an object with a ...
0
votes
1answer
57 views
How does linker know what to link with a system call?
When I was trying to compile squid by hand on a RHEL 5.5 server, run configure and got
configure: WARNING: Eep! Cannot find epoll, kqueue, /dev/poll, poll or select!
configure: WARNING: Will try ...
0
votes
0answers
46 views
how to use poll with libcurl
Recently I meet a problem the when using select after muti_curl_fdset, the maxfd is over 1024 in my process, and it is necessary to have such a value. I search in libcurl's ...
0
votes
0answers
81 views
Local multithreaded server: how make it simple?
There is a task - i need a client-server apps with properties below:
client uses blocking sockets
server is passive: he accepts incoming connections, gets some data, processes it and sends results ...
0
votes
1answer
84 views
How to get a list of connected clients in a server using Python epoll
I would like to send a message to a subset of clients connected to a server which uses Python epoll. Is there a practical way of getting list of fileno's of connected clients?
1
vote
0answers
159 views
What to use? Thread Pool OR Selector OR poll OR epoll (libev library)
My Android (2.3 and above) application needs to have TCP communication with 100 (maximum) embedded devices running TCP servers at same time.
The smartphone app should be robust enough to handle 100+ ...
0
votes
1answer
63 views
How to use epoll instead of select in this code?
In UNIX Network Programming Volume 1:Figure 6-22 ,there is a piece of code as follows:
/* include fig01 */
#include "unp.h"
int main(int argc, char **argv)
{
int i, maxi, maxfd, ...
2
votes
1answer
92 views
When recv blocks?
The goal is to read data from a socket without blocking. The Linux manual page says:
The receive calls normally return any data available, up to the
requested amount, rather than waiting for ...
2
votes
2answers
322 views
Boost Asio single threaded performance
I am implementing custom server that needs to maintain very large number (100K or more) of long lived connections. Server simply passes messages between sockets and it doesn't do any serious data ...
1
vote
0answers
99 views
the program performance when using epoll with EPOLLONESHOT in multithread server
the code is so easy, because i use EPOLLONESHOT to create a leader-follower multithread server program.
i run a test for it, and the server just do echo directly. when the qps reaches 150000, the 12 ...
0
votes
1answer
199 views
Why am I getting the EPOLLHUP event on a brand new socket
I have some code that when run on a virtual machine is misbehaving for some reason.
The order of initialization is:
s_listen = socket(...)
bind(s_listen, ...)
epoll_ctl(epfd, EPOLL_CTL_ADD, ...
1
vote
1answer
156 views
receiving out of order udp packets in linux
I observed unexpected out of order packets receive sequence in my linux c++ program. After I limited the number of receive sockets, it received packets in sequence again. In addition, I had also ...
1
vote
1answer
54 views
epoll server won't unbind
I have written an epoll server over Ubuntu Linux kernel 3.5.0-23, working very well with one problem:
if a client connects, and then logs off, I can restart the server immediately.
However, if the ...
0
votes
1answer
127 views
EPOLLIN and send with no EPOLLOUT
I've been able to use epoll successfully after your help and reading another resources, the problem I'm facing now is that I need to send to different FD than the EPOLLOUT event return, so if I have 5 ...
0
votes
1answer
106 views
Why having to use non-blocking fd in a edge triggered epoll function?
I read document abount edge triggered epoll function in web as follows:
1. The file descriptor that represents the read side of a pipe (rfd) is registered on the epoll instance.
2. A pipe writer ...
0
votes
1answer
64 views
release event.data.ptr when epoll_ctl(del) a fd
I use event.data.ptr to point to an object.
When I epoll_ctl(del) the event I have to delete the object(pointed by event.data.ptr).
How can I get the pointer?
epll_ctl(del) just ignores the ...
1
vote
2answers
279 views
multithreaded epoll
I am creating a multithreaded server using epoll (edge-triggered) and non-blocking sockets. Currently I'm creating an event loop on the main thread and waiting for notifications and it works correctly ...
0
votes
0answers
53 views
epoll with Queue for IPC
Sorry for this silly question :), I'm using a queue for IPC between two threads, so I have one thread that sends if there is enough space in the queue, and the other thread is checking with infinite ...
2
votes
2answers
130 views
epoll loops on disconnection of a client
I am trying to implement a socket server by using epoll. I have 2 threads doing 2 tasks:
listening to incoming connection
writing on screen the data the client is sending.
For my test I have the ...
2
votes
3answers
211 views
C++ libraries for non-blocking, line-oriented socket I/O?
I'm going to be writing a Linux client that will make a socket connection to five (or so) servers. The client will send a "line" (a string followed by "\n") to each one, and will receive a line back ...
1
vote
1answer
75 views
Find what descriptors are registered within an epoll instance
I'm wondering whether there is a way to find out what descriptors (and the expected events) are registered for a particular epoll instance using gdb or some other inspection tool?
It's fairly easy to ...
0
votes
1answer
122 views
C: Data forwarding server using epoll ET fills the send buffer
I have the following situation. My server receives data from remote server (fd_server) and forwards it to the client (fd_client). I'm using edge triggered epoll so I can handle multiple clients and ...
-1
votes
1answer
43 views
epoll issue: tunneling and multi-threading
I encounter this problem while trying to do TCP tunnelling between two threads.
Thread 1
listen at Port
accept
then add the sock after accept to epoll_ctl
while (1)
epoll_wait
read ...
1
vote
1answer
207 views
Does epoll have thread-safe issues?
This is a follow-on to question 14221339.
I have a thread pool that is running inside an epoll_wait() loop.
An external thread calls epoll_ctl() and adds a listener socket with
(EPOLLET | ...
1
vote
1answer
83 views
epoll_wait() on a listener socket and spurious failures
I'm seeing the following interaction between epoll_wait() and a listener socket. The sequence of events for creating the listener socket is:
call socket()
call bind()
call fcntl() and set to ...
3
votes
1answer
52 views
Receiving events in childs
I'm writing tcp server using libev.
I'm creating socket and forking after listen(), then starting a libev read watcher on listening socket and receiving client connections in watcher callback.
May it ...
0
votes
1answer
116 views
how to use epoll with data->ptr, instead of data.fd?
I'm writing an application using epoll and large amount of fd's.
in order to improve the searches of fd to application relevant DB, I want to pass to epoll application info, such as index in DB array.
...
3
votes
4answers
172 views
architecture of high performance an tcp server
I am working on a project to develop an high performance tcp server and I decided to use epoll and multi-threading.
But I find it difficult in designing server and now I am quite puzzled with this two ...

