na-adjective
reentrant
Computing term describing a program or function that can be safely called again before a previous invocation completes, often used in multi-threaded or interrupt-driven contexts.
この関数はリエントラントなので、割り込みから安全に呼び出せます。
This function is reentrant, so it can be safely called from an interrupt.
リエントラントなコードを書くには、静的変数の使用を避ける必要がある。
To write reentrant code, you need to avoid using static variables.