racket/collects/scribblings/reference/concurrency.scrbl
Matthew Flatt 3bb120545f fix ~300 typos reported by Vladimir Nesterovich (a.k.a. Gwyth)
--- but Gwyth's amazingly helpful review of chapters 1-11
     pointed out a few problems that are more difficult to fix
     and are still pending
2011-01-04 09:53:31 -07:00

21 lines
705 B
Racket

#lang scribble/doc
@(require "mz.ss")
@title[#:tag "concurrency" #:style 'toc]{Concurrency and Parallelism}
Racket supports multiple threads of control within a program,
thread-local storage, some primitive synchronization mechanisms, and a
framework for composing synchronization abstractions. In addition, the
@scheme[racket/future] and @racket[racket/place] libraries provide
support for parallelism to improve performance.
@local-table-of-contents[]
@;------------------------------------------------------------------------
@include-section["threads.scrbl"]
@include-section["sync.scrbl"]
@include-section["thread-local.scrbl"]
@include-section["futures.scrbl"]
@include-section["places.scrbl"]