Thread Abstraction

image.png

Thread vs Process

Process

Threads

image.png

Thread Definition

A thread is a Single execution Sequence that represents a Separately Schedulable task

Implementing Thread?

Thread Operations

  1. thread_create(thread, func, args)
  2. thread_yield()
  3. thread_join(thread)
  4. thread_exit(exit_code)

image.png

image.png

각 스레드별로 속도가 다르다.