Jump to content

C POSIX library: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Fixed link to semaphore.
m →‎References: "This page has moved. Please adjust your bookmarks." So I did.
Line 44: Line 44:


==References==
==References==
* [http://www.phim.unibe.ch/comp_doc/c_manual/C/FUNCTIONS/funcref.htm Lists headers in the POSIX library]
* [http://www.space.unibe.ch/comp_doc/c_manual/C/FUNCTIONS/funcref.htm#posix Lists headers in the POSIX library]
* [http://www.ncsa.uiuc.edu/UserInfo/Resources/Hardware/IBMp690/IBM/usr/share/man/info/en_US/a_doc_lib/files/aixfiles/termios.h.htm about termios.h]
* [http://www.ncsa.uiuc.edu/UserInfo/Resources/Hardware/IBMp690/IBM/usr/share/man/info/en_US/a_doc_lib/files/aixfiles/termios.h.htm about termios.h]
* [http://www.cs.utah.edu/flux/oskit/html/oskit-wwwch20.html Description of the posix library]
* [http://www.cs.utah.edu/flux/oskit/html/oskit-wwwch20.html Description of the posix library]

Revision as of 17:51, 6 November 2007

The C POSIX library is a language-independent library (using C calling conventions) that adds functions specific to POSIX systems. POSIX (and SUS) specifies a number of routines that should be available over and above those in the C standard library proper. It was developed at the same time as the ANSI C standard and is closely related to C. Some effort was made to make the C and POSIX libraries compatible, but there are a few POSIX functions that were never introduced into ANSI C.

Facilities are often implemented alongside the C standard library functionality, with varying degrees of closeness. For example, glibc implements functions such as fork within libc.so, but before NPTL was merged into glibc it constituted a separate library with its own linker flag. Often, this POSIX-specified functionality will be regarded as part of the library; the C library proper may be identified as the ANSI or ISO C library.

C POSIX library header files

<cpio.h> Magic numbers for the cpio archive format.
<dirent.h> Allows the opening and listing of directories.
<fcntl.h> File opening, locking and other operations.
<grp.h> User group information and control.
<pwd.h> passwd (user information) access and control.
<sys/ipc.h> Inter-process communication (IPC).
<sys/msg.h> POSIX message queues.
<sys/sem.h> POSIX semaphores.
<sys/stat.h> File information (stat et al).
<sys/time.h> Time and date functions and structures.
<sys/types.h> Various data types used elsewhere.
<sys/utsname.h> uname and related structures.
<sys/wait.h> Status of terminated child processes (see wait)
<tar.h> Magic numbers for the tar archive format.
<termios.h> Allows terminal I/O interfaces.
<unistd.h> Various essential POSIX functions and constants.
<utime.h> inode access and modification times.

References