IfEdit:
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 threadsthreads processes then you'llyou will likely have to manage the concurrency of access.
If each thread has their own descriptorI'm pretty certain you're in the first case, thennot the underlying FIFO management may handle that concurrency for yousecond. So the question then becomes "what do you gain by managing the concurrency by yourself?"
With a shared descriptor model, you runAs Jan pointed out the risk that if one thread trashesread calls are not guaranteed to be atomic. But the descriptorintent is for them to be that it will affect allway. See paragraphs 2 and 4 under Input and Output from the other threads bringing everything to a haltRationale section of the manual. Individual Sharing file descriptors may beacross processes can only make those concurrency issues more resilient to this issueconvoluted.
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. It's My primary reasoning is that it is less code you have to write and maintain, as well as increasing. You can have a single routine that's called by each thread to get the stability of your appdescriptor. An additional benefit is that it sets you up well in the failure case you need to fork to new processes instead of spawning child threads.