Software Archive
Read-only legacy content

Threaded??

Intel_C_Intel
Employee
232 Views
What does it mean for a program or part of a program to be Threaded or Multithreaded? And what is the difference
0 Kudos
1 Reply
Steven_L_Intel1
Employee
232 Views
There's a chapter in the Programmer's Guide on Multithreaded applications. It means that you use, either directly or indirectly, the Win32 API to create multiple execution threads - parts of your program that run in parallel. All QuickWin applications are multithreaded, as one thread handles user input and the other thread executes your code. This allows execution to continue in one thread while the other is waiting for something to happen.

Steve
0 Kudos
Reply