UNIX环境高级编程 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线

UNIX环境高级编程电子书下载地址
内容简介:
If you are an experienced C programmer with a working knowledge of UNIX, you cannot afford to be without this up-to -date tutorial on the system call interface and the most important functions found in the ANSI C library. Richard Stevens describes more than 200 system calls and functions; since he believes the best way to learn code is to read code,a brief example accompanies each description. Building upon information presented in the first 15 chapters, the author offers chapter-long examples teaching you how to create a database library, a PostScript printer driver, a modem dialer, and a program that runs other programs under a pseudo terminal. To make your analysis and understanding ofthis code even easier, and to allow you to modify it, all of the code in the book is available via UUNET. Advanced Programming in the UNIX Environment is applicable to all major UNIX releases, especially System V Release the latest release of 4.3BSD, including 386BSD. These real-world implementations allow you to more clearly understand the status of the current and future standards,including IEEE POSIX and XPG3.
书籍目录:
Preface
Chapter 1 Introduction
Chapter 2 Unix Standardization and Implementations
Chapter 3 File I/O
Chapter 4 files and Directories
Chapter 5 Standard I/O Library
Chapter 6 System Data Files and Information
Chapter 7 The Environment of a Unix Process
Chapter 8 Process Control
Chapter 9 Process Relationships
Chapter 10 Signals
Chapter 11 Terminal I/O
Chapter 12 Advanced I/O
Chapter 13 Daemon Processes
Chapter 14 Interprocess Communication
Chapter 15 Advanced Interprocess Communication
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
Parent and the child share a file table entry for every open descriptor.
大多数UNIX调试程序都使用core文件以检查进程终止时的状态。
将进程的信号屏蔽字设置为由sigmask指向的值。在捕捉到一个信号或发生了一个会终止该进程的信号之前,该进程被挂起。如果捕捉到一个信号而且从该信号处理程序返回,则sigsuspend返回,并且将该进程的信号屏蔽字设置为调用sigsuspend之前的值。
与应用程序使用文件描述符(fd)访问文件一样,访问套接字也需要使用套接字描述符,其在unix系统中是用文件描述符实现的。
在AF_INET通信域中套接字SOCK_STREAM的默认协议是TCP,SOCK_DGRAM的默认协议是UDP。
不同处理器架构支持不同的字节序,小端(little-endian)freebsd linux on intel pentium,大端(big-endian)mac os on power pc solaris on sun sparc,有些处理器可以配置大端和小端,更加混乱。
TCP/IP 采用大端字节序。对于TCP/IP,地址是使用网络字节序来表示,所以应用程序有时候需要在处理器的字节序和网络字节序之间转换。
uint32_t htonl(uint32_t hostint32);
uint16_t htons(uint16_t hostint16);
uint32_t ntohl(uint32_t netint32);
uint16_t ntohsl(uint16_t netint16);
h 代表host
n 代表network
l 代表 long
s 代表 short
由open返回的文件描述符一定是最小的未用描述符数值。这一点被某些应用程序用来在标准输入,标准输出或标准错误输出上打开新的文件。
其中,atexit的参数是一个函数地址,当调用此函数时无需向它传送任何参数,也不期望它返回一个值。exit以登记这些函数的相反顺序调用它们。同一函数如若登记多次,则也被调用多次。
其它内容:
书籍介绍
If you are an experienced C programmer with a working knowledge of UNIX, you cannot afford to be without this up-to -date tutorial on the system call interface and the most important functions found in the ANSI C library. Richard Stevens describes more than 200 system calls and functions; since he believes the best way to learn code is to read code,a brief example accompanies each description. Building upon information presented in the first 15 chapters, the author offers chapter-long examples teaching you how to create a database library, a PostScript printer driver, a modem dialer, and a program that runs other programs under a pseudo terminal. To make your analysis and understanding ofthis code even easier, and to allow you to modify it, all of the code in the book is available via UUNET. Advanced Programming in the UNIX Environment is applicable to all major UNIX releases, especially System V Release the latest release of 4.3BSD, including 386BSD. These real-world implementations allow you to more clearly understand the status of the current and future standards,including IEEE POSIX and XPG3.
网站评分
书籍多样性:4分
书籍信息完全性:5分
网站更新速度:3分
使用便利性:6分
书籍清晰度:5分
书籍格式兼容性:3分
是否包含广告:7分
加载速度:3分
安全性:7分
稳定性:7分
搜索功能:9分
下载便捷性:6分
下载点评
- pdf(199+)
- 体验好(103+)
- 推荐购买(578+)
- 好评(670+)
- 无盗版(170+)
- 好评多(355+)
- 盗版少(161+)
- 差评(199+)
- 内涵好书(266+)
- 已买(658+)
- 实惠(117+)
- 值得购买(517+)
下载评价
- 网友 潘***丽:
这里能在线转化,直接选择一款就可以了,用他这个转很方便的
- 网友 宫***凡:
一般般,只能说收费的比免费的强不少。
- 网友 益***琴:
好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。
- 网友 沈***松:
挺好的,不错
- 网友 苍***如:
什么格式都有的呀。
- 网友 利***巧:
差评。这个是收费的
- 网友 冯***丽:
卡的不行啊
- 网友 谢***灵:
推荐,啥格式都有
- 网友 康***溪:
强烈推荐!!!
- 网友 詹***萍:
好评的,这是自己一直选择的下载书的网站
- 网友 温***欣:
可以可以可以
- 网友 扈***洁:
还不错啊,挺好
喜欢"UNIX环境高级编程"的人也看了
创新的方向 中华工商联合出版社 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
Conversations with Marketing Masters 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
审计专业技术资格考试金考卷(中级 2020全新版) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
格里格钢琴抒情小品选 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
机器猫 哆啦A梦3 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
9787562057864 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
麻将听牌类型讲解 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
国学诵·中华传统文化经典读本:笠翁对韵 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
小熊的一年 湖南少年儿童出版社 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
国际共运黄皮书:国际共产主义运动发展报告(2021~2022) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 森林良品产地环境与质量安全 江波 等著 中国林业出版社【正版】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 语文一年级上册(部编本) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- ABCtime美国小学同步阅读1级预备级 学而思原版引进美国必修教材readingA-Z 分级阅读 幼儿园小班适用 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 长笛(7级-8级社会艺术水平考级系列教材) 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 艺术不是惟一的方式 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 新界标日语综合教程+练习册第1册 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 金融仓储理论与实务 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 高校网球教学方式的改革与创新 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 上海的英国文化地图 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 幼儿创意小手工 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
书籍真实打分
故事情节:7分
人物塑造:6分
主题深度:8分
文字风格:4分
语言运用:3分
文笔流畅:4分
思想传递:3分
知识深度:8分
知识广度:9分
实用性:7分
章节划分:6分
结构布局:6分
新颖与独特:8分
情感共鸣:4分
引人入胜:4分
现实相关:5分
沉浸感:3分
事实准确性:4分
文化贡献:6分