Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 1.1 KB

File metadata and controls

20 lines (17 loc) · 1.1 KB
title Include Files for Multithreading | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-parallel
ms.topic conceptual
dev_langs
C++
helpviewer_keywords
threading [C++], include files
include files, multithreading
multithreading [C++], include files
ms.assetid 98d764f9-71f4-4da5-8f3a-8d2d26e96799
author mikeblome
ms.author mblome
ms.workload
cplusplus

Include Files for Multithreading

Standard include files declare C run-time library functions as they are implemented in the libraries. If you use the Full Optimization (/Ox) or fastcall Calling Convention (/Gr) option, the compiler assumes that all functions should be called using the register calling convention. The run-time library functions were compiled using the C calling convention, and the declarations in the standard include files tell the compiler to generate correct external references to these functions.

See Also

Multithreading with C and Win32