This pseudocode run concurrently in multiple threads causes deadlock:
Resource res1 = pool.get();
...
Resource res2 = pool.get();
...
pool.release(res2);
pool.release(res1);
Is that an expected behavior? (I guess it is)
Deadlock doesn't seem to happen if the size of pool is twice of the number of threads - is this statement correct?
Is there a "scientific" name for this kind of deadlock in computer science? Would appreciate some links.
Thanks