Function safety

Function safety refers to whether or not it's safe to use the functions in certain situations.

functions are thread-safe and will behave as documented even in a multithreaded environement. However, functions are neither interrupt-safe nor signal-safe. Don't use functions in an interrupt handler or a signal handler.

Classification:

Safety  Value  
Interrupt handler No
Signal handler No
Thread Yes