- multithreaded (MT) programs: the #thread class itself and different
- synchronization objects: #mutexes and
- @ref criticalsection_overview with
- #conditions. The thread API in wxWidgets resembles to
- POSIX1.c threads API (a.k.a. pthreads), although several functions have
- different names and some features inspired by Win32 thread API are there as
- well.
+ multithreaded (MT) programs: the wxThread class itself and different
+ synchronization objects: mutexes (see wxMutex) and critical sections (see
+ wxCriticalSection) with conditions (see wxCondition). The thread API in wxWidgets
+ resembles to POSIX1.c threads API (a.k.a. pthreads), although several functions have
+ different names and some features inspired by Win32 thread API are there as well.