Next Page > Hide TOC

Introduction to Threading Programming Guide

Contents:

Organization of This Document
See Also


As multicore computers become more commonplace, running an application that has only one path of execution for code to follow quickly becomes a barrier to performance. In order to take advantage of a computer’s extra cores, an application must break its overall work down into smaller chunks and run those chunks concurrently on separate cores. The low-level technology used to run each chunk is called a thread.

Although this document is ostensibly about using threads in your application, it is important to point out that threads are really just infrastructure. Taking advantage of threads effectively requires you to design your application in a way that supports concurrency. Done correctly, an application should be able to run tasks concurrently and be guaranteed that those tasks execute correctly and with minimal interference. Done incorrectly, an application’s tasks may corrupt each other’s data and potentially cause your application to crash.

This document provides an introduction to concurrency, describes why it is important, and provides design tips for implementing it in Mac OS X applications. This document also describes the relevant Mac OS X technologies (including threads) related to concurrency and provides examples of how to use them.

Because threading and concurrency are advanced programming topics, you should read the information in this book carefully before trying to implement threads in your own applications. You should also consult other texts and Internet resources regarding threading and concurrency in application design.

Organization of This Document

This document has the following chapters and appendixes:

See Also

This document provides only a light coverage of the use of the POSIX threads API. For more information about the available POSIX thread routines, see the pthread man page. For a more in-depth explanation of POSIX threads and their usage, see Programming with POSIX Threads by David R. Butenhof.



Next Page > Hide TOC


© 2008 Apple Inc. All Rights Reserved. (Last updated: 2008-02-08)


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.