C++ Concurrency in Action
eBook - ePub

C++ Concurrency in Action

  1. 592 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

C++ Concurrency in Action

About this book

"This book should be on every C++ programmer's desk. It's clear, concise, and valuable." - Rob Green, Bowling Green State University This bestseller has been updated and revised to cover all the latest changes to C++ 14 and 17! C++ Concurrency in Action, Second Edition teaches you everything you need to write robust and elegant multithreaded applications in C++17. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology You choose C++ when your applications need to run fast. Well-designed concurrency makes them go even faster. C++ 17 delivers strong support for the multithreaded, multiprocessor programming required for fast graphic processing, machine learning, and other performance-sensitive tasks. This exceptional book unpacks the features, patterns, and best practices of production-grade C++ concurrency. About the Book C++ Concurrency in Action, Second Edition is the definitive guide to writing elegant multithreaded applications in C++. Updated for C++ 17, it carefully addresses every aspect of concurrent development, from starting new threads to designing fully functional multithreaded algorithms and data structures. Concurrency master Anthony Williams presents examples and practical tasks in every chapter, including insights that will delight even the most experienced developer. What's inside

  • Full coverage of new C++ 17 features
  • Starting and managing threads
  • Synchronizing concurrent operations
  • Designing concurrent code
  • Debugging multithreaded applications

About the Reader Written for intermediate C and C++ developers. No prior experience with concurrency required. About the Author Anthony Williams has been an active member of the BSI C++ Panel since 2001 and is the developer of the just: thread Pro extensions to the C++ 11 thread library. Table of Contents

  • Hello, world of concurrency in C++!
  • Managing threads
  • Sharing data between threads
  • Synchronizing concurrent operations
  • The C++ memory model and operations on atomic types
  • Designing lock-based concurrent data structures
  • Designing lock-free concurrent data structures
  • Designing concurrent code
  • Advanced thread management
  • Parallel algorithms
  • Testing and debugging multithreaded applications

Frequently asked questions

Yes, you can cancel anytime from the Subscription tab in your account settings on the Perlego website. Your subscription will stay active until the end of your current billing period. Learn how to cancel your subscription.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Perlego offers two plans: Essential and Complete
  • Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
  • Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Both plans are available with monthly, semester, or annual billing cycles.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes! You can use the Perlego app on both iOS or Android devices to read anytime, anywhere — even offline. Perfect for commutes or when you’re on the go.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Yes, you can access C++ Concurrency in Action by Anthony Williams in PDF and/or ePUB format, as well as other popular books in Computer Science & Parallel Programming. We have over one million books available in our catalogue for you to explore.

Information

Table of contents

  1. Copyright
  2. Brief Table of Contents
  3. Table of Contents
  4. Praise for the first edition
  5. Preface
  6. Acknowledgments
  7. About this book
  8. About the author
  9. About the cover illustration
  10. Chapter 1. Hello, world of concurrency in C++!
  11. Chapter 2. Managing threads
  12. Chapter 3. Sharing data between threads
  13. Chapter 4. Synchronizing concurrent operations
  14. Chapter 5. The C++ memory model and operations on atomic types
  15. Chapter 6. Designing lock-based concurrent data structures
  16. Chapter 7. Designing lock-free concurrent data structures
  17. Chapter 8. Designing concurrent code
  18. Chapter 9. Advanced thread management
  19. Chapter 10. Parallel algorithms
  20. Chapter 11. Testing and debugging multithreaded applications
  21. Appendix A. Brief reference for some C++11 language features
  22. Appendix B. Brief comparison of concurrency libraries
  23. Appendix C. A message-passing framework and complete ATM example
  24. Appendix D. C++ Thread Library reference
  25. Index
  26. List of Figures
  27. List of Tables
  28. List of Listings