Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a little confused by C standard lib and C POSIX lib, because I found that, many header files defined in C POSIX lib are right in C standard lib.

So, I assume that, C standard lib is a lib defined by ANSI C organization, and there are different implementation on different platforms (Win32/Unix-like), and C POSIX lib is just a implementation for C standard lib on Unix-like OS, right?

But C POSIX lib contains some headers not specified in C standard lib, such as <sys/types.h>, <sys/wait.h>, <pthread.h>.

Take <pthread.h> as an example, I presume its C standard lib counterpart is <threads.h>, then if I want to write an multi-threading program on linux, which header file should I include, <pthread.h> or <threads.h>?

share|improve this question
2  
ANSI C has been obsolete since 1990, when C became an international standard. Since then, C is maintained by an ISO working group. – Lundin Feb 21 '12 at 12:12

2 Answers

up vote 7 down vote accepted

POSIX is a superset of the standard C library, and it's important to note that it defers to it. If C and POSIX is ever in conflict, C wins.

Sockets, file descriptors, shared memory etc. are all part of POSIX, but do not exist in the C library.

pthread.h is used for POSIX threads and threads.h is a new header for C11 and is part of the C library. Perhaps pthreads will be deprecated sometime in the future in favor of the C ones, however you probably can't count on C11 to have widespread deployment yet. Therefore if you want portability you should prefer pthreads for now. If portability is not a concern, and you have C11 threads available, you should probably use those.

share|improve this answer

The C POSIX library is a specification of a C standard library for POSIX systems. It was developed at the same time as the ANSI C standard. Some effort was made to make POSIX compatible with standard C; POSIX includes additional functions to those introduced in standard C.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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