What is thread basically? ? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

What is thread basically? ?

9th Feb 2019, 6:42 AM
Mutabar Shah
Mutabar Shah - avatar
3 Respuestas
+ 7
A thread is a particular flow of control within a process. A thread shares the address space with other threads in the same process, but each thread gets its own call stack and set of registers. Switching between threads within a process is a much lighter-weight operation than switching between processes. Conceptually, there are two major types of thread: cooperatively scheduled threads and preemptively scheduled threads. With cooperatively scheduled threads, it is up to the thread to manually yield control to the task scheduler (though this usually also happens on I/O) and with preemptively scheduled threads, every thread may be interrupted and suspended by the scheduler at any point. The advantage of cooperatively scheduled threads is that it is easy to make sure that control is only transferred to other threads when the state of the system is logically consistent with higher-level constraints, but preemptively scheduled threads can make much better use of additional hardware.
9th Feb 2019, 9:45 AM
GAWEN STEASY
GAWEN STEASY - avatar
+ 6
This link will give some more information about the mention https://en.wikipedia.org/wiki/Thread_(computing)
9th Feb 2019, 9:46 AM
GAWEN STEASY
GAWEN STEASY - avatar
+ 3
Like a mini process or program that is part of a larger program/app/application.
9th Feb 2019, 8:19 AM
Sonic
Sonic - avatar