suggest me any real time situations in which i'm supposed to create multiple threads,and then introduce a deadlock situation.this is kind of a project!!! can u ppl help to make the application more interestin with some real time situation
|
|
think philosophers, golden forks and a big bowl of spaghetti |
|||||||
|
|
This will cause a deadlock:
Basically you've got 2 threads competing for locks on the same objects. Thread 1 gets the lock on |
|||
|
|
|
You can use the producer-consumer algorithm to demonstrate multi-threading. Report generator Scenario would be, data per report is inserted into a queue for further processing by one service (the producer). The report processor service (the consumer) takes data for a report from the queue and processes them one report at a time. There can be 5 diferent instances of report processor service. All of them consume reports from a single queue (this is where you might need to introduce locks on the queue, etc). |
|||
|
|
|
You can also deadlock with a fixed size thread pool:
|
|||
|
|