What does it mean if the operating system is said to be POSIX-compilant?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 5 down vote accepted

All you want/need to know about POSIX, and POSIX-compliant OSes in particular.

POSIX (Portable Operating System Interface for Unix) is simply a set or standards that define how to develop programs for UNIX (and its variants). Being POSIX-compliant for an OS means that it supports those standards (eg APIs) and thus can natively run UNIX programs, or at least porting an application from UNIX to the target OS is easy/easier. Of course the level of compliance is not necessarily 100% and can vary (eg, not all features are supported or may be implemented differently).

link|improve this answer
feedback

It simply means that the operating system complies with the POSIX (Portable Operating System Interface for Unix) family of IEEE standards. Five minutes on Google will give you a list of compliant OS' and that actual content of the standards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.