1.

What Are Fixed Memory Leaks And Threads Locking Problems.

Answer»

Memory LEAK is a bug in the program which uses the memory continuously without RELEASING it until the system crash.Thread locking problem is nothing but a deadlock situation in case of SYNCHRONOUS process when two consecutive threads get lock on a common resource and waiting for each other to release that. This happens usually in case when the SEMAPHORES or MONITORS are not used.

Memory leak is a bug in the program which uses the memory continuously without releasing it until the system crash.Thread locking problem is nothing but a deadlock situation in case of synchronous process when two consecutive threads get lock on a common resource and waiting for each other to release that. This happens usually in case when the semaphores or monitors are not used.



Discussion

No Comment Found