null
Loading... Please wait...
FREE SHIPPING on All Unbranded Items LEARN MORE
Print This Page

C++ Concurrency in Action (Practical Multithreading)

List Price: $69.99
SKU:
9781933988771
Quantity:
Minimum Purchase
25 unit(s)
  • Availability: Confirm prior to ordering
  • Branding: minimum 50 pieces (add’l costs below)
  • Check Freight Rates (branded products only)

Branding Options (v), Availability & Lead Times

  • 1-Color Imprint: $2.00 ea.
  • Promo-Page Insert: $2.50 ea. (full-color printed, single-sided page)
  • Belly-Band Wrap: $2.50 ea. (full-color printed)
  • Set-Up Charge: $45 per decoration
FULL DETAILS
  • Availability: Product availability changes daily, so please confirm your quantity is available prior to placing an order.
  • Branded Products: allow 10 business days from proof approval for production. Branding options may be limited or unavailable based on product design or cover artwork.
  • Unbranded Products: allow 3-5 business days for shipping. All Unbranded items receive FREE ground shipping in the US. Inquire for international shipping.
  • RETURNS/CANCELLATIONS: All orders, branded or unbranded, are NON-CANCELLABLE and NON-RETURNABLE once a purchase order has been received.
  • Product Details

    Author:
    Anthony Williams
    Format:
    Paperback
    Pages:
    528
    Publisher:
    Manning (March 15, 2012)
    Imprint:
    Manning
    Language:
    English
    ISBN-13:
    9781933988771
    ISBN-10:
    1933988770
    Weight:
    27.6oz
    Dimensions:
    7.38" x 9.25" x 1.2"
    File:
    Eloquence-SimonSchuster_04022026_P9912986_onix30_Complete-20260402.xml
    Folder:
    Eloquence
    List Price:
    $69.99
    Pub Discount:
    37
    Case Pack:
    7
    As low as:
    $66.49
    Publisher Identifier:
    P-SS
    Discount Code:
    H
  • Overview

    Summary

    C++ Concurrency in Action is a reference and guide to the new C++ 11 Standard for experienced C++ programmers as well as those who have never written multithreaded code. This book will show you how to write robust multithreaded applications in C++ while avoiding many common pitfalls.
    About the Technology
    Multiple processors with multiple cores are the norm these days. The C++11 version of the C++ language offers beefed-up support for multithreaded applications, and requires that you master the principles, techniques, and new language features of concurrency to stay ahead of the curve.
    About the Book
    Without assuming you have a background in the subject, CC++ Concurrency in Action gradually enables you to write robust and elegant multithreaded applications in C++11. You'll explore the threading memory model, the new multithreading support library, and basic thread launching and synchronization facilities. Along the way, you'll learn how to navigate the trickier bits of programming for concurrency.

    Written for C++ programmers who are new to concurrency and others who may have written multithreaded code using other languages, APIs, or platforms.

    Purchase of the print book comes with an offer of a free PDF, ePub, and Kindle eBook from Manning. Also available is all code from the book.
    What's Inside
    • Written for the new C++11 Standard
    • Programming for multiple cores and processors
    • Small examples for learning, big examples for practice

    ====================
    Table of Contents
    1. Hello, world of concurrency in C++!
    2. Managing threads
    3. Sharing data between threads
    4. Synchronizing concurrent operations
    5. The C++ memory model and operations on atomic types
    6. Designing lock-based concurrent data structures
    7. Designing lock-free concurrent data structures
    8. Designing concurrent code
    9. Advanced thread management
    10. Testing and debugging multithreaded applications