1.

What is Reentrancy?

Answer»

Reentrant is simply a function in which VARIOUS clients can USE and SHARES a single copy of a program during a similar period. This concept is generally associated with OS code and does not deal with concurrency. It has two major functions:

  • Program code cannot change or modify itself.
  • Local data for every CLIENT process needs to be stored in different disks.


Discussion

No Comment Found