├── LICENSE.md └── README.md /LICENSE.md: -------------------------------------------------------------------------------- 1 | Open Publication License 2 | ========================= 3 | Advanced Linux Programming is published under the [Open Publication 4 | License](http://www.opencontent.org/openpub/), Version 1, no options 5 | exercised. (Due to an oversight in final production, the copyright 6 | notice on the book is incorrect.) The full text may be downloaded from 7 | this site. 8 | 9 | GNU General Public License 10 | ========================= 11 | Code samples in the book are covered by the [GNU General Public 12 | License](http://www.gnu.org/copyleft/gpl.html) and are also available. 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Advanced Linux Programming 2 | 3 | ## About This Repository 4 | 5 | Most of the content resides in the gh-pages branch. The master branch 6 | contains a README file and a LICENSE file. 7 | 8 | ## About Advanced Linux Programming 9 | 10 | ### Publication Information 11 | 12 | ``` 13 | Advanced Linux Programming 14 | by Mark Mitchell, Jeffrey Oldham, and Alex Samuel, of CodeSourcery LLC 15 | published by New Riders Publishing 16 | ISBN 0-7357-1043-0 17 | First Edition, June 2001 18 | ``` 19 | 20 | ### From the Back Cover 21 | 22 | Advanced Linux Programming is intended for the programmer already 23 | familiar with the C programming language. Authors Alex Samuel, Jeffrey 24 | Oldham, and Mark Mitchell of CodeSourcery, LLC take a tutorial 25 | approach and teach the most important concepts and power features of 26 | the GNU/Linux system in application programs. 27 | 28 | If you're a developer already experienced with programming for the 29 | GNU/Linux system, are experienced with another UNIX-like system and 30 | are interested in developing GNU/Linux software, or want to make the 31 | transition for a non-UNIX environment and are already familiar with 32 | the general principles of writing good software, this book is for 33 | you. In addition, you will find that this book is equally applicable 34 | to C and C++ programming. Even those progamming in other languages 35 | will find this book useful since the C language APIs and conventions 36 | are the lingua franca of GNU/Linux. 37 | --------------------------------------------------------------------------------