Click here to Skip to main content
15,890,579 members
Everything / Multi-threading

Multi-threading

multi-threading

Great Reads

by Eric Ouellet, Sani Huttunen
Fast implementations of permutation algorithms
by Piotr Grygorczuk
Enable C++11 multithreading features in GCC for FreeRTOS
by Petrov Vladimir
Starting Threads in MFC and Win32 and some handling samples
by ObiWan_MCC
A C# SMTP server (receiver).

Latest Articles

by Piotr Grygorczuk
Enable C++11 multithreading features in GCC for FreeRTOS
by Oleg_100
Synchronize access to multiple objects by name (string)
by ls6777
Task monitor for multi-threaded embedded systems
by Eric Ouellet, Sani Huttunen
Fast implementations of permutation algorithms

All Articles

Sort by Updated

Multi-threading 

29 Jan 2023 by Oleg_100
Synchronize access to multiple objects by name (string)
12 Nov 2022 by ls6777
Task monitor for multi-threaded embedded systems
1 Aug 2018 by vudangngoc
Synchronization is slow, why and how to do better?
22 May 2016 by Pavel Durov
Calling async function inside lock block
13 Apr 2016 by Member 11246861
Within LAN, laptop gets signals from microcomputer and microcontroller using TCP/IP and SPI
8 Feb 2016 by Rohit Kejriwal
Downloading Files from SharePoint Server to Network Drive
17 Feb 2015 by Evgeny Zavalkovsky
MI TLS(Multi Instance Thread Local Storage) is generalization of Thread Local Storage, introduced in C++11.
7 May 2014 by Gregory Morse
Activating WRL audio interfaces in native C++
21 Jun 2011 by SergeyT2
You can use Action instead of MethodInvoker as well. And ".Invoke" at the method is unnesessary.public static void ThreadSafeCall(this Control control, Action method){ if (control.InvokeRequired) { control.Invoke(method); } else { method(); ...
18 Jun 2011 by RakeshMeena
This extension can be used to update controls in a thread safe manner. This method requires a MethodInvoker delegate as input parameter. It just checks whether the control is on a different thread than the caller.