Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 2.62 KB

multithreading-support-for-older-code-visual-cpp.md

File metadata and controls

47 lines (33 loc) · 2.62 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Multithreading Support for Older Code (Visual C++)
Multithreading Support for Older Code (Visual C++)
08/27/2018
threading [C++]
multiple threads
concurrent programming [C++]
programming [C++], multithreaded
multithreading [C++], about multithreading
multiple concurrent threads
multithreading [C++]
24425b1f-5031-4c6b-aac7-017115a40e7c

Multithreading Support for Older Code (Visual C++)

Visual C++ allows you to have multiple concurrent threads of execution running simultaneously. With multithreading, you can spin off background tasks, manage simultaneous streams of input, manage a user interface, and much more.

In This Section

Multithreading with C and Win32
Provides support for creating multithread applications with Microsoft Windows

Multithreading with C++ and MFC
Describes what processes and threads are and what the MFC approach to multithreading is.

Multithreading and Locales
Discusses issues that arise when using the locale functionality of both the C Runtime Library and the C++ Standard Library in a multithreaded application.

Related Sections

CWinThread
Represents a thread of execution within an application.

CSyncObject
Describes a pure virtual class that provides functionality common to the synchronization objects in Win32.

CSemaphore
Represents a semaphore, which is a synchronization object that allows a limited number of threads in one or more processes to access a resource.

CMutex
Represents a mutex, which is a synchronization object that allows one thread mutually exclusive access to a resource.

CCriticalSection
Represents a critical section, which is a synchronization object that allows one thread at a time to access a resource or section of code.

CEvent
Represents an event, which is a synchronization object that allows one thread to notify another that an event has occurred.

CMultiLock
Represents the access-control mechanism used in controlling access to resources in a multithreaded program.

CSingleLock
Represents the access-control mechanism used in controlling access to a resource in a multithreaded program.