Multithreading Flashcards
The speed of creation, context switching, responsiveness, and execusion if fast for __.
Threads
The Cost - Economy in __ is cheaper.
Threads.
Concurrency is high for __.
Threads.
Memory Requirements is light for __.
Threads.
Sharing of resources is available for __.
Threads.
__ can run in parallel on a multiprocessor system - Scalability.
Threads.
Terminate another thread __.
pthread_cancel
Creates a thread __.
pthread_create
Sets thread to release the resources __.
pthread_detach
Compares two thread IDs __.
pthread_equal
Exits a thread without exiting a process __.
pthread_exit
Sends a kill signal to a thread __.
pthread_kill
Waits for a thread __.
pthread_join
Get the running thread’s ID __.
pthread_self
Variables declared outside a function __.
Global.