linux系统编程手册

所属分类:Linux/Unix编程
开发工具:C/C++
文件大小:949KB
下载次数:8
上传日期:2019-01-17 11:24:44
上 传 者getsyl
说明:  《Linux系统编程手册》随书源码,人民邮电出版社出版,与书籍配套使用
("Linux System Programming Manual" with book source code, published by People's Posts and Telecommunications Publishing House, with books supporting use)

文件列表:
linux系统编程手册\tlpi-book\acl\acl_update.c (13497, 2014-07-13)
linux系统编程手册\tlpi-book\acl\acl_view.c (3991, 2014-07-13)
linux系统编程手册\tlpi-book\acl\Makefile (413, 2014-07-13)
linux系统编程手册\tlpi-book\altio\demo_sigio.c (2743, 2014-07-13)
linux系统编程手册\tlpi-book\altio\epoll_input.c (3731, 2014-07-13)
linux系统编程手册\tlpi-book\altio\Makefile (283, 2014-07-13)
linux系统编程手册\tlpi-book\altio\poll_pipes.c (2716, 2014-07-13)
linux系统编程手册\tlpi-book\altio\select_mq.c (4364, 2014-07-13)
linux系统编程手册\tlpi-book\altio\self_pipe.c (4533, 2014-07-13)
linux系统编程手册\tlpi-book\altio\t_select.c (3045, 2014-07-13)
linux系统编程手册\tlpi-book\BUILDING (5182, 2013-10-24)
linux系统编程手册\tlpi-book\cap\check_password_caps.c (4435, 2014-07-13)
linux系统编程手册\tlpi-book\cap\Makefile (464, 2014-07-13)
linux系统编程手册\tlpi-book\CHANGES (17889, 2014-07-10)
linux系统编程手册\tlpi-book\COPYING.agpl-v3 (34520, 2013-10-24)
linux系统编程手册\tlpi-book\COPYING.gpl-v3 (35147, 2013-10-24)
linux系统编程手册\tlpi-book\COPYING.lgpl-v3 (7651, 2013-10-24)
linux系统编程手册\tlpi-book\daemons\become_daemon.c (2395, 2014-07-13)
linux系统编程手册\tlpi-book\daemons\become_daemon.h (1378, 2014-07-13)
linux系统编程手册\tlpi-book\daemons\daemon_SIGHUP.c (4422, 2014-07-13)
linux系统编程手册\tlpi-book\daemons\Makefile (249, 2014-07-13)
linux系统编程手册\tlpi-book\daemons\test_become_daemon.c (1007, 2014-07-13)
linux系统编程手册\tlpi-book\daemons\t_syslog.c (2333, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\bad_symlink.c (1298, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\file_type_stats.c (2571, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\list_files.c (2042, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\list_files_readdir_r.c (2595, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\Makefile (366, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\nftw_dir_tree.c (2955, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\t_dirbasename.c (1161, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\t_unlink.c (2023, 2014-07-13)
linux系统编程手册\tlpi-book\dirs_links\view_symlink.c (1588, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\copy.c (1972, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\direct_read.c (2242, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\Makefile (643, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\mix23io.c (1013, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\mix23_linebuff.c (957, 2014-07-13)
linux系统编程手册\tlpi-book\filebuff\write_bytes.c (1920, 2014-07-13)
linux系统编程手册\tlpi-book\fileio\atomic_append.c (1579, 2014-07-13)
linux系统编程手册\tlpi-book\fileio\bad_exclusive_open.c (1967, 2014-07-13)
... ...

Gidday! This is the code for the book "The Linux Programming Interface" and this is a note from me, the author, Michael Kerrisk. For instructions on building the programs, see the file BUILDING. For notes on changes that have been made to the code since it was published in the book, see the file CHANGES. Source code licensing ===================== All complete programs provided in this distribution are covered by the GNU Affero General Public License (Version 3), a copy of which is contained in the file COPYING.agpl-v3, which should have arrived with this tarball. The library functions (in the lib/ directory) are covered by the GNU Lesser General Public License (Version 3); see the files COPYING.lgpl-v3 and COPYING.gpl-v3 provided with this tarball. A note on the source code ========================= The source code is available in two versions: "dist" and "book". The "book" version contains the program source files as published in the book. The source files in the "dist" version contain extra code beyond that published in the book. The differences between the "dist" and "book" versions are as follows: a) The "dist" versions of some programs contain extra comments. These additional comments were stripped out of the printed version to make the published versions of the programs shorter. (The book itself contains text describing the operation of the programs.) b) In a few cases, some changes have been incorporated into the "dist" versions to make it possible to compile programs on UNIX implementations other than Linux, so that you can try them out on other implementations if you wish. Where necessary, the additional code is conditionally compiled using the following platform-specific macros: __linux__ Defined on Linux __sun Defined on Solaris __FreeBSD__ Defined on FreeBSD __NetBSD__ Defined on NetBSD __OpenBSD__ Defined on OpenBSD __APPLE__ Defined on Mac OS X __hpux Defined on HP-UX __osf__ Defined on Tru*** UNIX (formerly DEC OSF1) __sgi Defined on Irix _AIX Defined on AIX c) In the "dist" version, some programs have extra functionality beyond that in the "book" versions. Where this is significant, comments in the programs explain the differences. Subdirectories ============== Under the 'tlpi' directory are a number of subdirectories. Each subdirectory corresponds to one or more chapters of the book. The following paragraphs give brief notes on the contents of each subdirectory. Note that in some cases, files are (hard) linked to appear in more than one directory. This is particularly the case for each of the files in the 'lib' directory, most of which are also linked in the directory of the chapter relating to that file. Directory Files for Chapter... lib This contains library routines used by other programs. The tlpi_hdr.h and error_functions.* files are located here. progconc 3 (System Programming Concepts) fileio 4 and 5 (File I/O) proc 6 (Processes) memalloc 7 (Memory Allocation) users_groups 8 (Users and Groups) proccred 9 (Process Credentials) time 10 (Time) syslim 11 (System Limits and Options) sysinfo 12 (System and Process Information) filebuff 13 (File I/O Buffering) filesys 14 (File Systems) files 15 (File Attributes) xattr 16 (Extended Attributes) acl 17 (Access Control Lists) dirs_links 18 (Directories and Links) inotify 19 (Monitoring File Events) signals 20 to 22 (Signals) timers 23 (Timers and Sleeping) procexec 24 (Process Creation), 25 (Process Termination), 26 (Monitoring Child Processes), 27 (Program Execution), and 28 (Further Details on Process Creation and Program Execution) threads 29 to 33 (POSIX Threads) pgsjc 34 (Process Groups, Sessions, and Job Control) procpri 35 (Process Priorities and Scheduling) procres 36 (Process Resources) daemons 37 (Daemons) cap 39 (Capabilities) loginacct 40 (Login Accounting) shlibs 41 and 42 (Shared Libraries) pipes 44 (Pipes and FIFOs) svipc 45 (System V IPC) svmsg 46 (System V Message Queues) svsem 47 (System V Semaphores) svshm 48 (System V Shared Memory) mmap 49 (Memory Mappings) vmem 50 (Virtual Memory Operations) pmsg 52 (POSIX Message Queues) psem 53 (POSIX Semaphores) pshm 54 (POSIX Shared Memory) filelock 55 (File Locking) sockets 56 to 61 (Sockets and Network Programming) tty 62 (Terminals) altio 63 (Alternative I/O Models) pty *** (Pseudoterminals) getopt Appendix B: Parsing Command-Line Options

近期下载者

相关文件


收藏者