Advanced Programming in the UNIX Environment

 

You are here: Computing & Internet > Computer Hardware & Opera... > Operating Systems & Graph... > Unix, Unix Linux & Unix T... 

Word Power Books

Advanced Programming in the UNIX Environment


by Stephen A. Rago (Author)
by W.Richard Stevens (Author)

 

Paperback

ISBN: 9780321525949

 

Availability:
If Item in stock, posted within 24 hours. Otherwise expected despatch within 3 to 10 working days.

 

Our Price: £46.99

RRP £46.99 , Save £0.00

 

0 customer(s) reviewed this product



  • Description
  • Reviews
  • Book Details
  • Contents


1 standard. Nearly all examples have been tested on four of today's most widely used UNIX/Linux platforms: FreeBSD 5.2.1; the Linux 2.4.22 kernel; Solaris 9; and Darwin 7.4.0, the FreeBSD/Mach hybrid underlying Apple's Mac OS X 10.3. As in the first edition, you'll learn through example, including more than 10,000 lines of downloadable, ANSI C source code. More than 400 system calls and functions are demonstrated with concise, complete programs that clearly illustrate their usage, arguments, and return values. To tie together what you've learned, the book presents several chapter-length case studies, each fully updated for contemporary environments. Advanced Programming in the UNIX(R) Environment has helped a generation of programmers write code with exceptional power, performance, and reliability. Now updated for today's UNIX/Linux systems, this second edition will be even more indispensable.


 

ISBN 321525949
ISBN13 9780321525949
Publisher Addison-Wesley Educational Publishers Inc
Format Paperback
Publication date 28/02/2008
Pages 960
Weight (grammes) 1416
Published in United States
Height (mm) 235
Width (mm) 187

Foreword.
Preface.
Preface to the First Edition.
1. UNIX System Overview.
Introduction.
UNIX Architecture.
Logging In.
Files and Directories.
Input and Output.
Programs and Processes.
Error Handling.
User Identification.
Signals.
Time Values.
System Calls and Library Functions.
Summary.
2. UNIX Standardization and Implementations.
Introduction.
UNIX Standardization.
UNIX System Implementations.
Relationship of Standards and Implementations.
Limits.
Options.
Feature Test Macros.
Primitive System Data Types.
Conflicts Between Standards.
Summary.
3. File I/O.
Introduction.
File Descriptors.
open Function.
creat Function.
closeFunction.
lseek Function.
read Function.
write Function.
I/O Efficiency.
File Sharing.
Atomic Operations.
dup and dup2 Functions.
sync, fsync, and fdatasync Functions.
fcntl Function.
ioctl Function.
/dev/fd.
Summary.
4. Files and Directories.
Introduction.
stat, fstat, and lstat Functions.
File Types.
Set-User-ID and Set-Group-ID.
File Access Per missions.
Ownership of New Files and Directories.
access Function.
umask Function.
chmodand fchmod Functions.
Sticky Bit.
chown, fchown, and lchown Functions.
File Size.
File Truncation.
File Systems.
link, unlink, remove, and rename Functions.
Symbolic Links.
symlinkand readlink Functions.
File Times.
utime Function.
mkdirand rmdir Functions.
Reading Director ies.
chdir, fchdir, and getcwd Functions.
Device Special Files.
Summary of File Access Per mission Bits.
Summary.
5. Standard I/O Library.
Introduction.
Streams and FILE Objects.
Standard Input, Standard Output, and Standard Error.
Buffering.
Opening a Stream.
Reading and Writing a Stream.
Line-at-a-Time I/O.
Standard I/O Efficiency.
Binary I/O.
Positioning a Stream.
Formatted I/O.
Implementation Details.
Temporary Files.
Alternatives to Standard I/O.
Summary.
6. System Data Files and Information.
Introduction.
Password File.
Shadow Passwords.
Group File.
Supplementary Group Ids.
Implementation Differences.
Other Data Files.
Login Accounting.
System Identification.
Time and Date Routines.
Summary.
7. Process Environment.
Introduction.
main Function.
Process Termination.
Command-Line Arguments.
Environment List.
Memory Layout of a C Program.
Shared Libraries.
Memory Allocation.
Environment Variables.
setjmp and longjmp Functions.
getrlimit and setrlimit Functions.
Summary.
8. Process Control.
Introduction.
Process Identifiers.
fork Function.
vfork Function.
exit Functions.
waitand waitpid Functions.
waitid Function.
wait3and wait4Functions.
Race Conditions.
exec Functions.
Changing User IDs and Group IDs.
Interpreter Files.
system Function.
Process Accounting.
User Identification.
Process Times.
Summary.
9. Process Relationships.
Introduction.
Terminal Logins.
Network Logins.
Process Groups.
Sessions.
Controlling Terminal.
tcgetpgrp, tcsetpgrp, and tcgetsid Functions.
Job Control.
Shell Execution of Programs.
Orphaned Process Groups.
FreeBSD Implementation.
Summary.
10. Signals.
Introduction.
Signal Concepts.
signal Function.
Unreliable Signals.
Interrupted System Calls.
Reentrant Functions.
SIGCLD Semantics.
Reliable-Signal Terminology and Semantics.
killand raise Functions.
alarmand pause Functions.
Signal Sets.
sigprocmask Function.
sigpending Function.
sigaction Function.
sigsetjmp and siglongjmp Functions.
sigsuspend Function.
abort Function.
system Function.
sleep Function.
Job-Control Signals.
Additional Features.
Summary.
11. Threads.
Introduction.
Thread Concepts.
Thread Identification.
Thread Creation.
Thread Termination.
Thread Synchronization.
Summary.
12. Thread Control.
Introduction.
Thread Limits.
hread Attributes.
Synchronization Attributes.
Reentrancy.
Thread-Specific Data.
Cancel Options.
Threads and Signals.
Threads and fork.
Threads and I/O.
Summary.
13. Daemon Processes.
Introduction.
Daemon Characteristics.
Coding Rules.
Error Logging.
Single-Instance Daemons.
Daemon Conventions.
Client-Server Model.
Summary.
14. Advanced I/O.
Introduction.
Nonblocking I/O.
Record Locking.
STREAMS.
I/O Multiplexing.
2 poll Function.
Asynchronous I/O.
readv and writev Functions.
readn and written Functions.
Memory-Mapped I/O.
Summary.
15. Interprocess Communication.
Introduction.
Pipes.
popen and pclose Functions.
Coprocesses.
FIFOs.
XSI IPC.
Message Queues.
Semaphores.
Shared Memory.
Client-Server Properties.
Summary.
16. Network IPC: Sockets.
Introduction.
Socket Descriptors.
Addressing.
Connection Establishment.
Data Transfer.
Socket Options.
Out-of-Band Data.
Nonblocking and Asynchronous I/O.
Summary.
17 Advanced IPC.
Introduction.
STREAMS-Based Pipes.
Unique Connections.
Passing File Descriptors.
An Open Server, Version 1.
An Open Server, Version 2.
Summary.
18. Terminal I/O.
Introduction.
Overview.
Special Input Characters.
Getting and Setting Terminal Attributes.
Terminal Option Flags.
stty Command.
Baud Rate Functions.
Line Control Functions.
Terminal Identification.
Canonical Mode.
Noncanonical Mode.
Terminal Window Size.
termcap, terminfo, and curses.
Summary.
19. Pseudo Terminals.
Introduction.
Overview.
Opening Pseudo-Terminal Devices.
pty_fork Function.
pty Program.
Using the pty Program.
Advanced Features.
Summary.
20. A Database Library.
Introduction.
History.
The Library.
Implementation Overview.
Centralized or Decentralized?
Concurrency.
Building the Library.
Source Code.
Performance.
Summary.
21. Communicating with a Network Printer.
Introduction.
The Inter net Printing Protocol.
The Hypertext Transfer Protocol.
Printer Spooling.
Source Code.
Summary.
Appendix A. Function Prototypes.
Appendix B. Miscellaneous Source Code.
Our Header File.
Standard Error Routines.
Appendix C. Solutions to Selected Exercises.
Bibliography.
Index.

Other books you might be interested in

Word Power Books

UNIX Power Unleashed

Ivan Bayross

 

£2.99 (list price £2.99 )

You Save £0.00

More Info
Word Power Books

The Official Ubuntu Book

Jono Bacon

 

£22.99 (list price £22.99 )

You Save £0.00

More Info