if got an Add function in a shared header:
Code:
int Add(int a, int b)
{
    return a+b;
}
is it safe if multiple threads calling the Add function?. if not how to make it safe to avoid unexpected results?.