Thread Starvation Vs Thread Livelock

Thread Starvation Vs Thread Livelock

  • perf-test.com need your contributions to build up a strong repository of performance engineering resources.

Vaibhav

Administrator
Staff member
Dec 10, 2015
21
1
3
36
Vaibhav submitted a new resource:

Thread Starvation Vs Thread Livelock - Thread Starvation Vs Thread Livelock

Thread Starvation
Starvation describes a situation where a thread is unable to gain regular access to shared resources and is unable to make progress. This happens when shared resources are made unavailable for long periods by "greedy" threads. For example, suppose an object provides a synchronized method that often takes a long time to return. If one thread invokes this method frequently, other threads that also need frequent synchronized access to the same object will often...

Read more about this resource...