Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web.
|
2005-12-12 Waiting for both network IO and inter-thread notificationsPeople doing lots of network IO in threaded programs have historically had a problem: waiting for both network IO and for IPC from threads at the same time. Generally you want to wait for network IO using Communication between the threads is not the problem, since it's easy to implement a threaded queue if your thread library doesn't already have one. The trick is making the main thread wake up to check the queue. The best answer on Unix is to use a pipe. The main IO loop selects (or polls) on the readable end's file descriptor as well as its network IO file descriptors; other threads signal the main thread by writing a byte to the writable end. While you can attach meaning to the byte's value, the simplest way is just to use it as a signal to the main thread to check workqueues and so on. When the main thread processes the queues, it reads an appropriate
number of bytes from the pipe and just discards them; the signal has
been received. (If the main thread will always clear all of your
queues, it can simply Typical pipes on Unix systems can accumulate at least 4K of pending data before writes to them block, so as long as the main thread is reasonably responsive your other threads can poke it asynchronously. (This is one reason to write only one byte per signal.) If you spawn other processes, you will need to make sure that they don't inherit either end of the pipe. Sidebar: order of operationsJust to cover a trivial root: the correct order of operations is:
This insures that wakeup signals never get lost and work is never missed. If you have queues with a non-blocking 'remove from queue' operation, you can empty the pipe in one shot and then get everything from the queue. In some circumstances you'll wake up from a signal only to find nothing in the queue, but this is harmless. (3 comments.)
programming/WaitingForIOAndThreads written at 00:51:38; Add Comment
|
These are my WanderingThoughts GettingAround This is part of CSpace, and is written by ChrisSiebenmann. * * * Atom feeds are available; see the bottom of most pages. Categories: links, linux, programming, python, snark, solaris, spam, sysadmin, tech, unix, web |