is ok to open fifo with one FD and share it with multiple threads?
or is it better to have multiple fds opened for the same fifo and share these fds with the threads?
BTW, I’ll be doing write and read.
The environment is linux, C, pthreads
Depends on what exactly you are going to do. Usually if you stick to the syscall-level interface (int
-typed descriptors, methods read
and write
), one descriptor is ok, except if you want to have different settings (some blocking, some not and such).
Remember, that when there are multiple readers on fifo, random one of them will get the data and the switch from one reader to another may happen after any byte (because it depends on write granularity and internal implementation of the buffer in kernel), so you either need one fifo for each intended recipient or use single-byte messages.
3
Edit:
Some additional updates, spurred in part by Jan Hudec’s comments (props Jan!)
From the OpenGroup Posix docs
3.289 Process An address space with one or more threads executing within that address space, and the required system resources for those threads. Note: Many of the system resources defined by POSIX.1-2008 are shared among all of the threads within a process. These include the process ID, the parent process ID, process group ID, session membership, real, effective, and saved set-user-ID, real, effective, and saved set-group-ID, supplementary group IDs, current working directory, root directory, file mode creation mask, and file descriptors.
-
So, if all of your threads are in the same process, they’ll end up using the same file descriptor anyway. But this is something I would let the OS manage for you as it will be one less headache to worry about.
-
(Same reference as above, under File Offset) Since you’re dealing with FIFOs, you don’t have to worry about the file offset being stored along with the file descriptor. If you were dealing with regular files, then this could be an issue to be aware of.
Revised Answer
There are two cases to consider:
1. One process with multiple threads
2. two (or more) processes with one or more threads.
In the first case, all of the threads will have the same file descriptor for the FIFO because that’s how the OS manages that for you.
In the second case, if you share the file descriptor between the various threads processes then you will likely have to manage the concurrency of access.
I’m pretty certain you’re in the first case, not the second.
As Jan pointed out the read
calls are not guaranteed to be atomic. But the intent is for them to be that way. See paragraphs 2 and 4 under Input and Output from the Rationale section of the manual. Sharing file descriptors across processes can only make those concurrency issues more convoluted.
All else being equal, since the OS manages a lot of this for you I’d go with the multiple descriptors approach, even though it will likely result in the same file descriptor value being used. My primary reasoning is that it is less code you have to write and maintain. You can have a single routine that’s called by each thread to get the descriptor. An additional benefit is that it sets you up well in case you need to fork to new processes instead of spawning child threads.
7