Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
4  
you need to comeup with ideas yourself as this is your assignment. – Umair Ahmed Jul 7 '09 at 10:58
By "real-time" do you mean that the homework assignment is about to be handed in as you're asking this question on SO? – madlep Jul 7 '09 at 12:08

4 Answers

think philosophers, golden forks and a big bowl of spaghetti

share|improve this answer
I heard about them dining, but golden forks?!? Philosophers have moved up in the world – basszero Jul 7 '09 at 11:06
Is this a real time example or text book example :) – Umair Ahmed Jul 7 '09 at 11:09
It was a long time ago, maybe I invented the golden forks – Robin Day Jul 7 '09 at 11:15

This will cause a deadlock:

public static void main(String[] args) 
{
  final Object object1 = new Object();
  final Object object2 = new Object();

  Thread thread1 = new Thread(
    new Runnable() 
    {
      public void run() 
      {    
        try 
        {    
          //**** Lock on object1 first ****
          synchronized(object1) 
          {    
            Thread.sleep(1000);

            //**** Lock on object2 second ****
            synchronized(object2) 
            {
              System.out.println("Should never get here.");
            }
          }
        }
        catch (InterruptedException e) 
        {    
          System.out.println("Thread interupted.");
        }
      }
    }
  );

  Thread thread2 = new Thread(
    new Runnable() 
    {
      public void run() 
      {
        try 
        {
          //**** Lock on object2 first ****
          synchronized(object2) 
          {    
            Thread.sleep(1000);

            //**** Lock on object1 second ****
            synchronized(object1) 
            {
              System.out.println("Should never get here.");
            }
          }
        }
        catch (InterruptedException e) 
        {
          System.out.println("Thread interupted.");
        }
      }
    }
  );

  thread1.start();
  thread2.start();
}

Basically you've got 2 threads competing for locks on the same objects. Thread 1 gets the lock on object1 while thread 2 gets a lock on object2, each then tries to get a lock on the other object and you've got a deadlock because another thread already has the lock.

share|improve this answer

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).

share|improve this answer

You can also deadlock with a fixed size thread pool:

final ExecutorService exec = Executors.newFixedThreadPool(1);
exec.submit(new Runnable() {
    public void run() {
        Future<?> f = exec.submit(new Runnable() {
            public void run() {
            }
        });
        try { f.get(); } catch (Exception ex) { }
    }
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.