Concurrency Lecture 1 Flashcards
What are the two basic units of execution?
Processes and threads.
What are the two basic units of execution?
Processes and threads.
What are processes often seen as synonymous with?
With Programs or Applications.
What is the minimum number of threads a process can have?
One thread.
What is the relationship between thread and process?
Threads exist within a process, executing tasks as part of that process.
What is monitoring/managing threads?
The process of observing all the information about threads and their thread groups, and displaying it in a user friendly way.
Do threads have properties?
YES or NO
Yes, they have properties like name and Id.
Can you create your own threads?
YES or NO
Yes.