Could someone tell me what code can be called \"re-entrant\" code?
I came across this word when reading some real time operating system. What disciplines must be st
Simply saying, a re-entrant code is a code which can be shared among multiple process.
This is possible when the following conditions are satisfied:
So, a code following these conditions can be called re-entrant code.