All ABOUT OS THREADS IN ONE PLACE

  • What is a Thread?

    October 30, 2019 by

     A thread of execution is the smallest sequence of programmed instructions that can be managed independently by a scheduler, which is typically a part of the operating system. The implementation of threads and processes differs between operating systems, but in most cases a thread is a component of a process. Multiple threads can exist within one process, executing concurrently and sharing resources such as memory, while… Read more

  • Types of Thread

    January 29, 2020 by

    User Level Threads In this case, the thread management kernel is not aware of the existence of threads. The thread library contains code for creating and destroying threads, for passing message and data between threads, for scheduling thread execution and for saving and restoring thread contexts. The application starts with a single thread. Advantages Thread… Read more

View all posts