Home > Computing and Information Technology > Computer science > Systems analysis and design > The Design and Implementation of the 4.4 BSD Operating System
38%
The Design and Implementation of the 4.4 BSD Operating System

The Design and Implementation of the 4.4 BSD Operating System

          
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

About the Book

This book describes the design and implementation of the BSD operating system--previously known as the Berkeley version of UNIX. Today, BSD is found in nearly every variant of UNIX, and is widely used for Internet services and firewalls, timesharing, and multiprocessing systems. Readers involved in technical and sales support can learn the capabilities and limitations of the system; applications developers can learn effectively and efficiently how to interface to the system; systems programmers can learn how to maintain, tune, and extend the system. Written from the unique perspective of the system's architects, this book delivers the most comprehensive, up-to-date, and authoritative technical information on the internal structure of the latest BSD system. As in the previous book on 4.3BSD (with Samuel Leffler), the authors first update the history and goals of the BSD system. Next they provide a coherent overview of its design and implementation. Then, while explaining key design decisions, they detail the concepts, data structures, and algorithms used in implementing the system's facilities. As an in-depth study of a contemporary, portable operating system, or as a practical reference, readers will appreciate the wealth of insight and guidance contained in this book. Highlights of the book: Details major changes in process and memory management Describes the new extensible and stackable filesystem interface Includes an invaluable chapter on the new network filesystem Updates information on networking and interprocess communication

Table of Contents:
1. OVERVIEW. 1. History and Goals. History of the UNIX System. Origins. Research UNIX. AT&T UNIX System III and System V. Other Organizations. Berkeley Software Distributions. UNIX in the World. BSD and Other Systems. The Influence of the User Community. Design Goals of 4BSD. 4.2BSD Design Goals. 4.3BSD Design Goals. 4.4BSD Design Goals. Release Engineering. References. 2. Design Overview of 4.4BSD. 4.4BSD Facilities and the Kernel. The Kernel. Kernel Organization. Kernel Services. Process Management. Signals. Process Groups and Sessions. Memory Management. BSD Memory-Management Design Decisions. Memory Management Inside the Kernel. I/O System. Descriptors and I/O. Descriptor Management. Devices. Socket IPC. Scatter/Gather I/O. Multiple Filesystem Support. Filesystems. Filestores. Network Filesystem. Terminals. Interprocess Communication. Network Communication. Network Implementation. System Operation. Exercises. References. 3.Kernel Services. Kernel Organization. System Processes. System Entry. Run-Time Organization. Entry to the Kernel. Return from the Kernel. System Calls. Result Handling. Returning from a System Call. Traps and Interrupts. Traps. I/O Device Interrupts. Software Interrupts. Clock Interrupts. Statistics and Process Scheduling. Timeouts. Memory-Management Services. Timing Services. Real Time. Adjustment of the Time. External Representation. Interval Time. User, Group, and Other Identifiers. Host Identifiers. Process Groups and Sessions. Resource Services. Process Priorities. Resource Utilization. Resource Limits. Filesystem Quotas. System-Operation Services. Accounting. Exercises. References. II. PROCESSES. 4. Process Management. Introduction to Process Management. Multiprogramming. Scheduling. Process State. The Process Structure. The User Structure. Context Switching. Process State. Low-Level Context Switching. Voluntary Context Switching. Synchronization. Process Scheduling. Calculations of Process Priority. Process-Priority Routines. Process Run Queues and Context Switching. Process Creation. Process Termination. Signals. Comparison with POSIX Signals. Posting of a Signal. Delivering a Signal. Process Groups and Sessions. Sessions. Job Control. Process Debugging. Exercises. References. 5. Memory Management. Terminology. Processes and Memory . Paging. Replacement Algorithms. Working-Set Model. Swapping. Advantages of Virtual Memory. Hardware Requirements for Virtual Memory. Overview of the 4.4BSD Virtual-Memory System. Kernel Memory Management. Kernel Maps and Submaps. Kernel Address-Space Allocation. Kernel Malloc. Per-Process Resources. 4.4BSD Process Virtual-Address Space. Page-Fault Dispatch. Mapping to Objects. Objects. Objects to Pages. Shared Memory. Mmap Model. Shared Mapping. Private Mapping. Collapsing of Shadow Chains. Private Snapshots. 5.6 Creation of a New Process. Reserving Kernel Resources. Duplication of the User Address Space. Creation of a New Process Without Copying. Execution of a File. Process Manipulation of Its Address Space. Change of Process Size. File Mapping. Change of Protection. Termination of a Process. The Pager Interface. Vnode Pager. Device Pager. Swap Pager. Paging. Page Replacement. Paging Parameters. The Pageout Daemon. Swapping. The Swap-In Process. Portability . The Role of the pmap Module. Initialization and Startup. Mapping Allocation and Deallocation. Change of Access and Wiring Attributes for Mappings. Management of Page-Usage Information. Initialization of Physical Pages. Management of Internal Data Structures. Exercises. References. III. I/O System. 6. I/O System Overview. I/O Mapping from User to Device. Device Drivers. I/O Queueing. Interrupt Handling. Block Devices. Entry Points for Block-Device Drivers. Sorting of Disk I/O Requests. Disk Labels. Character Devices. Raw Devices and Physical I/O. Character-Oriented Devices. Entry Points for Character-Device Drivers. Descriptor Management and Services. Open File Entries. Management of Descriptors. File-Descriptor Locking. Multiplexing I/O on Descriptors. Implementation of Select. Movement of Data Inside the Kernel. The Virtual-Filesystem Interface. Contents of a Vnode. Vnode Operations. Pathname Translation. Exported Filesystem Services. Filesystem-Independent Services. The Name Cache. Buffer Management. Implementation of Buffer Management. Stackable Filesystems. Simple Filesystem Layers. The Union Mount Filesystem. Other Filesystems. Exercises. References. 7. Local Filesystems. Hierarchical Filesystem Management. Structure of an Inode. Inode Management. Naming. Directories. Finding of Names in Directories. Pathname Translation. Links. Quotas. File Locking. Other Filesystem Semantics. Large File Sizes. File Flags. Exercises. References. 8. Local Filestores. Overview of the Filestore. The Berkeley Fast Filesystem. Organization of the Berkeley Fast Filesystem. Optimization of Storage Utilization. Reading and Writing to a File. Filesystem Parameterization. Layout Policies. Allocation Mechanisms. Block Clustering. Synchronous Operations. The Log-Structured Filesystem. Organization of the Log-Structured Filesystem. Index File. Reading of the Log. Writing to the Log. Block Accounting. The Buffer Cache. Directory Operations. Creation of a File. Reading and Writing to a File. Filesystem Cleaning. Filesystem Parameterization. Filesystem-Crash Recovery. The Memory-Based Filesystem. Organization of the Memory-Based Filesystem. Filesystem Performance. Future Work. Exercises. References. 9. The Network Filesystem. History and Overview. NFS Structure and Operation. The NFS Protocol. The 4.4BSD NFS Implementation. Client-Server Interactions. RPC Transport Issues. Security Issues. Techniques for Improving Performance. Leases. Crash Recovery. Exercises. References. 10. Terminal Handling. Terminal-Processing Modes. Line Disciplines. User Interface. The tty Structure. Process Groups, Sessions, and Terminal Control. C-lists. RS-232 and Modem Control. Terminal Operations. Open. Output Line Discipline. Output Top Half. Output Bottom Half. Input Bottom Half. Input Top Half. The stop Routine. The ioctl Routine. Modem Transitions. Closing of Terminal Devices. Other Line Disciplines. Serial Line IP Discipline. Graphics Tablet Discipline. Exercises. References. IV. INTERPROCESS COMMUNICATION. 11. Interprocess Communication. Interprocess-Communication Model. Use of Sockets. Implementation Structure and Overview. Memory Management. Mbufs. Storage-Management Algorithms. Mbuf Utility Routines. Data Structures. Communication Domains. Sockets. Socket Addresses. Connection Setup. Data Transfer. Transmitting Data. Receiving Data. Passing Access Rights. Passing Access Rights in the Local Domain. Socket Shutdown. Exercises. References. 12. Network Communication. Internal Structure. Data Flow. Communication Protocols. Network Interfaces. Socket-to-Protocol Interface. Protocol User-Request Routine. Internal Requests. Protocol Control-Output Routine. Protocol-Protocol Interface. pr_output. pr_input. pr_ctlinput. Interface between Protocol and Network Interface. Packet Transmission. Packet Reception. Routing. Kernel Routing Tables. Routing Lookup. Routing Redirects. Routing-Table Interface. User-Level Routing Policies. User-Level Routing Interface: Routing Socket. Buffering and Congestion Control. Protocol Buffering Policies. Queue Limiting. Raw Sockets. Control Blocks. Input Processing. Output Processing. Additional Network-Subsystem Topics. Out-of-Band Data. Address Resolution Protocol. Exercises. References. 13. Network Protocols. Internet Network Protocols. Internet Addresses. Subnets. Broadcast Addresses. Internet Multicast. Internet Ports and Associations. Protocol Control Blocks. User Datagram Protocol (UDP). Initialization. Output. Input. Control Operations. Internet Protocol (IP). Output. Input. Forwarding. Transmission Control Protocol (TCP). TCP Connection States. Sequence Variables. TCP Algorithms. Timers. Estimation of Round-Trip Time. Connection Establishment. Connection Shutdown. TCP Input Processing. TCP Output Processing. Sending of Data. Avoidance of the Silly-Window Syndrome. Avoidance of Small Packets. Delayed Acknowledgments and Window Updates. Retransmit State. Slow Start. Source-Quench Processing. Buffer and Window Sizing. Avoidance of Congestion with Slow Start. Fast Retransmission. Internet Control Message Protocol (ICMP). OSI Implementation Issues. Summary of Networking and Interprocess Communication. Creation of a Communication Channel. Sending and Receiving of Data. Termination of Data Transmission or Reception. Exercises. References. V. SYSTEM OPERATION. 14. System Startup. Overview. Bootstrapping. The boot Program. Kernel Initialization. Assembly-Language Startup. Machine-Dependent Initialization. Message Buffer. System Data Structures. Autoconfiguration. Device Probing. Device Attachment. New Autoconfiguration Data Structures. New Autoconfiguration Functions. Device Naming. Machine-Independent Initialization. User-Level Initialization. /sbin/init. /etc/rc. /usr/libexec/getty. /usr/bin/login. System-Startup Topics. Kernel Configuration. System Shutdown and Autoreboot. System Debugging. Passage of Information To and From the Kernel. Exercises. References. Glossary. Index. 0201549794T04062001


Best Sellers


Product Details
  • ISBN-13: 9780201549799
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Edition: 0002-
  • Language: English
  • Series Title: English
  • Weight: 1007 gr
  • ISBN-10: 0201549794
  • Publisher Date: 13 Jun 1996
  • Binding: Hardback
  • Height: 168 mm
  • No of Pages: 608
  • Spine Width: 32 mm
  • Width: 242 mm


Similar Products

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

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
The Design and Implementation of the 4.4 BSD Operating System
Pearson Education (US) -
The Design and Implementation of the 4.4 BSD Operating System
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.

The Design and Implementation of the 4.4 BSD Operating System

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