(not Windows) no pthreads support

What operating system platform (s) (other than Windows) does not support POSIX threads ("pthreads")?

+2


source to share


1 answer


Most modern desktop or server operating systems support POSIX streams. There are even variants of Windows (although Windows does not natively support pthreads, and open source implementations are usually a subset of pthread functions).



The only non-Microsoft platforms I've seen that don't directly support pthreads are usually embedded systems. Threading support on embedded OS platforms is often configured for this system hardware and does not use standard thread libraries.

+1


source







All Articles