Question d’entretien chez Bloomberg

What is difference between Reentrant and Thread Safe functions ?

Réponses aux questions d'entretien

Utilisateur anonyme

15 mai 2009

No idea.

1

Utilisateur anonyme

5 nov. 2011

Thread-safe simply means you can call the function from any number of threads without fear of corruption. Reentrant means a function can be safely called by the same thread recursively (directly or indirectly) without fear of corruption or deadlocking.

1