Is implementation of Solaris functions and POSIX ones similar or diverge alot. Actually, I was trying to find a solution for forking a process with multiple threads. POSIX doesn't have any function to do this while Solaris has forkall for this purpose. Do you think it can be easily ported to Linux. Note that my solution does not need to be portable or POSIX compliant.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
The Solaris has a full set of POSIX interfaces (possible without some optional parts), But Solaris has extra interfaces to support older Solaris software (which was written not with POSIX but with Solaris interfaces). Also, there is a thread in ML about forkall http://www.mail-archive.com/opensolaris-code@opensolaris.org/msg02256.html
The porting of such internal thing (process/thread management are deeply in-kernel) is hard and almost equal to writing this from Scratch. This is also because Solaris uses different model of threads. |
|||||||||||||||||||||
|