close menu
Bookswagon-24x7 online bookstore
close menu
My Account
Home > Computing and Information Technology > Computer programming / software engineering > Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)
Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)

Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)

5       |  8 Reviews 
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist
X

About the Book

"Stephen Rago's update is a long overdue benefit to the community of professionals using the versatile family of UNIX and UNIX-like operating environments. It removes obsolescence and includes newer developments. It also thoroughly updates the context of all topics, examples, and applications to recent releases of popular implementations of UNIX and UNIX-like environments. And yet, it does all this while retaining the style and taste of the original classic." --Mukesh Kacker, cofounder and former CTO of Pronto Networks, Inc. "One of the essential classics of UNIX programming." --Eric S. Raymond, author of The Art of UNIX Programming "This is the definitive reference book for any serious or professional UNIX systems programmer. Rago has updated and extended the classic Stevens text while keeping true to the original. The APIs are illuminated by clear examples of their use. He also mentions many of the pitfalls to look out for when programming across different UNIX system implementations and points out how to avoid these pitfalls using relevant standards such as POSIX 1003.1, 2004 edition and the Single UNIX Specification, Version 3." --Andrew Josey, Director, Certification, The Open Group, and Chair of the POSIX 1003.1 Working Group "Advanced Programming in the UNIX® Environment, Second Edition, is an essential reference for anyone writing programs for a UNIX system. It's the first book I turn to when I want to understand or re-learn any of the various system interfaces. Stephen Rago has successfully revised this book to incorporate newer operating systems such as GNU/Linux and Apple's OS X while keeping true to the first edition in terms of both readability and usefulness. It will always have a place right next to my computer." --Dr. Benjamin Kuperman, Swarthmore College Praise for the First Edition "Advanced Programming in the UNIX® Environment is a must-have for any serious C programmer who works under UNIX. Its depth, thoroughness, and clarity of explana-tion are unmatched." --UniForum Monthly "Numerous readers recommended Advanced Programming in the UNIX® Environment by W. Richard Stevens (Addison-Wesley), and I'm glad they did; I hadn't even heard of this book, and it's been out since 1992. I just got my hands on a copy, and the first few chapters have been fascinating." --Open Systems Today "A much more readable and detailed treatment of UNIX internals can be found in Advanced Programming in the UNIX® Environment by W. Richard Stevens (Addison-Wesley). This book includes lots of realistic examples, and I find it quite helpful when I have systems programming tasks to do." --RS/Magazine "This is the definitive reference book for any serious or professional UNIX systems programmer. Rago has updated and extended the original Stevens classic while keeping true to the original." --Andrew Josey, Director, Certification, The Open Group, and Chair of the POSIX 1003.1 Working Group For over a decade, serious C programmers have relied on one book for practical, in-depth knowledge of the programming interfaces that drive the UNIX and Linux kernels: W. Richard Stevens' Advanced Programming in the UNIX® Environment. Now, Stevens' colleague Stephen Rago has thoroughly updated this classic to reflect the latest technical advances and add support for today's leading UNIX and Linux platforms. Rago carefully retains the spirit and approach that made this book a classic. Building on Stevens' work, he begins with basic topics such as files, directories, and processes, carefully laying the groundwork for understanding more advanced techniques, such as signal handling and terminal I/O. Substantial new material includes chapters on threads and multithreaded programming, using the socket interface to drive interprocess communication (IPC), and extensive coverage of the interfaces added to the latest version of the POSIX.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® 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.

Table of Contents:
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.  


Best Sellers



Product Details
  • ISBN-13: 9780201433074
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Depth: 64
  • Height: 195 mm
  • No of Pages: 960
  • Spine Width: 52 mm
  • Width: 240 mm
  • ISBN-10: 0201433079
  • Publisher Date: 07 Jul 2005
  • Binding: Hardback
  • Edition: 2
  • Language: English
  • Series Title: Addison-Wesley Professional Computing Series
  • Weight: 1768 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

5       |  8 Reviews 
out of (%) reviewers recommend this product
Top Reviews
Rating Snapshot
Select a row below to filter reviews.
5
4
3
2
1
Average Customer Ratings
5       |  8 Reviews 
00 of 0 Reviews
Sort by :
Active Filters

00 of 0 Reviews
SEARCH RESULTS
1–2 of 2 Reviews
    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!

    BoxerLover2 - 5 Days ago
    A Thrilling But Totally Believable Murder Mystery

    Read this in one evening. I had planned to do other things with my day, but it was impossible to put down. Every time I tried, I was drawn back to it in less than 5 minutes. I sobbed my eyes out the entire last 100 pages. Highly recommend!


Sample text
Photo of
    Media Viewer

    Sample text
    Reviews
    Reader Type:
    BoxerLover2
    00 of 0 review

    Your review was submitted!
    Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)
    Pearson Education (US) -
    Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)
    Writing guidlines
    We want to publish your review, so please:
    • keep your review on the product. Review's that defame author's character will be rejected.
    • Keep your review focused on the product.
    • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
    • Refrain from mentioning competitors or the specific price you paid for the product.
    • Do not include any personally identifiable information, such as full names.

    Advanced Programming in the UNIX Environment: (Addison-Wesley Professional Computing Series)

    Required fields are marked with *

    Review Title*
    Review
      Add Photo Add up to 6 photos
      Would you recommend this product to a friend?
      Tag this Book
      Read more
      Does your review contain spoilers?
      What type of reader best describes you?
      I agree to the terms & conditions
      You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

      CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

      These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


      By submitting any content to Bookswagon, you guarantee that:
      • You are the sole author and owner of the intellectual property rights in the content;
      • All "moral rights" that you may have in such content have been voluntarily waived by you;
      • All content that you post is accurate;
      • You are at least 13 years old;
      • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
      You further agree that you may not submit any content:
      • That is known by you to be false, inaccurate or misleading;
      • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
      • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
      • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
      • For which you were compensated or granted any consideration by any unapproved third party;
      • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
      • That contains any computer viruses, worms or other potentially damaging computer programs or files.
      You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


      For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


      All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

      Accept

      New Arrivals



      Inspired by your browsing history


      Your review has been submitted!

      You've already reviewed this product!
      ASK VIDYA