The Linux Programming Interface: Difference between revisions
No edit summary |
The Linux Programming Interface" documents Linux kernel and GNU C Library APIs, eliminating redundancy with "and of." Added "the" for clarity: "The book covers Linux operating system topics." "Enlists" to "chronicles" for accuracy: "It outlines Unix's history and Linux's creation." Removed redundancy: "The author, a former Linux Weekly News writer, now maintains Linux man pages." internal link on user space. |
||
Line 34: | Line 34: | ||
}} |
}} |
||
'''''The Linux Programming Interface: A Linux and UNIX System Programming Handbook''''' is a book written by [[Michael Kerrisk]], which documents the [[Application programming interface|APIs]] of the [[Linux kernel]] and |
'''''The Linux Programming Interface: A Linux and UNIX System Programming Handbook''''' is a book written by [[Michael Kerrisk]], which documents the [[Application programming interface|APIs]] of the [[Linux kernel]] and the [[GNU C Library]] (glibc). |
||
==Book== |
==Book== |
||
The book covers topics related to Linux [[operating system]] and operating systems in general. It |
The book covers topics related to the Linux [[operating system]] and operating systems in general. It chronicles the history of [[Unix]] and how it led to the creation of Linux. It provides samples of code written in [[C (programming language)|C]], and learning exercises at the end of chapters. The author is a former writer for the [[Linux Weekly News]]<ref>{{cite web|url= https://lwn.net/Articles/549009/ |title= A goodbye note from Michael Kerrisk | publisher= lwn.net |access-date=2013-10-24 }}</ref> and the current maintainer for the [[Linux]] [[man pages]] project.<ref>{{cite web|url=https://www.kernel.org/doc/man-pages/|title=Linux man-pages home|publisher=kernel.org|access-date=2014-01-25}}</ref> |
||
''The Linux Programming Interface'' is a well-regarded<ref>{{cite book |title=Amazon's Readers Review |isbn=978-1593272203 |last1=Kerrisk |first1=Michael |date=October 2010 }}</ref> work on Linux [[systems programming]] and is available for readers in several languages.<ref>{{cite web |url=http://man7.org/tlpi/translations/index.html |title=Translations of 'The Linux Programming Interface' |publisher=man7.org |access-date=2014-05-01}}</ref> |
''The Linux Programming Interface'' is a well-regarded<ref>{{cite book |title=Amazon's Readers Review |isbn=978-1593272203 |last1=Kerrisk |first1=Michael |date=October 2010 }}</ref> work on Linux [[systems programming]] and is available for readers in several languages.<ref>{{cite web |url=http://man7.org/tlpi/translations/index.html |title=Translations of 'The Linux Programming Interface' |publisher=man7.org |access-date=2014-05-01}}</ref> |
||
Line 48: | Line 48: | ||
}} |
}} |
||
At [[FOSDEM]] 2016 Michael Kerrisk, the author of ''The Linux Programming Interface'', explained some of the issues with the Linux kernel's user |
At [[FOSDEM]] 2016 Michael Kerrisk, the author of ''The Linux Programming Interface'', explained some of the issues with the Linux kernel's [[User space and kernel space|user space]] API he and others perceive. It is littered with design errors: APIs which are non-extensible, unmaintainable, overly complex, limited-purpose, violations of standards, and inconsistent. Most of those mistakes can't be fixed because doing so would break the ABI that the kernel presents to user-space binaries.<ref>{{cite web |url=https://fosdem.org/2016/schedule/event/design_linux_kernel_api/ |title=How to design a Linux kernel API |author=[[Michael Kerrisk]] |date=2016-01-31}}</ref> |
||
== See also == |
== See also == |
Revision as of 16:34, 14 March 2024
![]() | This article contains promotional content. (April 2019) |
![]() | |
Author | Michael Kerrisk |
---|---|
Language | English |
Series | Learning |
Subject | covers current UNIX® standards (POSIX.1-2001 /SUSv3 and POSIX.1-2008 /SUSv4 ) |
Published | 2010 (No Starch Press) |
Pages | 1512 |
ISBN | 978-1-59327-220-3 |
The Linux Programming Interface: A Linux and UNIX System Programming Handbook is a book written by Michael Kerrisk, which documents the APIs of the Linux kernel and the GNU C Library (glibc).
Book
The book covers topics related to the Linux operating system and operating systems in general. It chronicles the history of Unix and how it led to the creation of Linux. It provides samples of code written in C, and learning exercises at the end of chapters. The author is a former writer for the Linux Weekly News[1] and the current maintainer for the Linux man pages project.[2]
The Linux Programming Interface is a well-regarded[3] work on Linux systems programming and is available for readers in several languages.[4]
-
The Linux kernel API to userspace discussed in the book consists of both the System Call Interface and the GNU C Library.
-
In-kernel APIs are not discussed in the book, neither are ABIs.
-
Simplified illustration of the Linux kernel's structure.
At FOSDEM 2016 Michael Kerrisk, the author of The Linux Programming Interface, explained some of the issues with the Linux kernel's user space API he and others perceive. It is littered with design errors: APIs which are non-extensible, unmaintainable, overly complex, limited-purpose, violations of standards, and inconsistent. Most of those mistakes can't be fixed because doing so would break the ABI that the kernel presents to user-space binaries.[5]
See also
References
- ^ "A goodbye note from Michael Kerrisk". lwn.net. Retrieved 2013-10-24.
- ^ "Linux man-pages home". kernel.org. Retrieved 2014-01-25.
- ^ Kerrisk, Michael (October 2010). Amazon's Readers Review. ISBN 978-1593272203.
- ^ "Translations of 'The Linux Programming Interface'". man7.org. Retrieved 2014-05-01.
- ^ Michael Kerrisk (2016-01-31). "How to design a Linux kernel API".