News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Process and Thread

Started by Danesh, March 06, 2005, 12:09:15 PM

Previous topic - Next topic

Danesh


Hi,

Can anyone explain exactly whats the difference between a Process and a Thread ? Which one could have lower cost ?

Thanks,

Danesh


Jibz


MichaelW

eschew obfuscation

AeroASM

A thread is a sequence of code that executes.

A process is a group of threads, and some memory and data reserved for its own use. It may also have resources like bitmaps and dialogs.
Most processes only have one thread.

Multithreading is where a process has more than one thread.

A process and a window form an Application.

Danesh

Thanks. That was cool. I got the point. Thanks again...