Process / Thread - Waiting state

Process States

About

waiting is a process state.

When a thread needs to wait, it suspends its execution

Method

You can put a thread (process) in a waiting with a method generally called sleep

Example: Java: Thread.sleep





Discover More
Java Conceptuel Diagram
Java Concurrency - (Object) Wait

in Java. java/lang/ObjectObject.wait, java/lang/Object.htmlwait(long timeout) and java/lang/Objectwait(long timeout, int nanos) suspend the current thread. The invocation of wait does not return until...
Data System Architecture
Parallel programming - Semaphore (Counter Variable)

A semaphore is a variable that control the access (physical or logical) by multiple thread to a common resource. A semaphore is a data structure that is initialized to a positive integer value and that...
Process States
Process / Thread - Blocking state

blocking is a thread state that occurs when a thread (where main thread = process) attempts to acquire a lock. wait... . Example: java/util/concurrent/BlockingQueueblocking queue Blocking_(computing)...
Process States
Process / Thread - Execution Suspension

A (Thread) Execution Suspension can be caused: by a execution suspension method that makes it in a waiting state by a thread block (when it attempts to get a lock). by a thread contention
Process States
Process / Thread - State

Process / Thread State is the state that a thread (and the main thread (process)) can take. An example of a process or thread state. Other sub-state may exists. It's dependent of the process runtime....



Share this page:
Follow us:
Task Runner