user98761
user98761

Reputation: 512

(non-Windows) platform lacking pthreads support

Which operating system platform(s) (other than Windows) lack support for POSIX threads ("pthreads")?

Upvotes: 2

Views: 231

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564413

Most modern, desktop or server oriented operating systems support POSIX threading. There are even implementations for Windows (although Windows doesn't support pthreads natively, and the open source implementations are typically a subset of pthread features).

The only non-Microsoft platforms I've seen that don't directly support pthreads are typically embedded systems. Threading support on embedded OS platforms is often customized for that system's hardware, and doesn't use standard threading libraries.

Upvotes: 1

Related Questions