The concepts of re-entrancy and thread safety are related, but not equivalent. You can write a re-entrant function that is not thread-safe, and a thread-safe function that is not re-entrant. I will use C# for my examples:
Re-entrant Function that is not Thread-Safe
This function reverses the entries of an array:
void Reverse(int[] data) {
if (data == null || data.Length < 2) return;
for (var i = 0 ; i != data.Length/2 ; i++) {
int tmp = data[i];
data[i] = data[data.Length-i-1];
data[data.Length-i-1] = tmp;
}
}
This function is clearly re-entrant, because it does not reference outside resources. Its thread safety, however, is conditional upon not passing it the same data from multiple threads. If several threads concurrently pass Reverse the same instance of an array, an incorrect result may be produced. One way of making this function unconditionally thread-safe would be an addition of a lock:
void Reverse(int[] data) {
if (data == null || data.Length < 2) return;
lock (data) {
for (var i = 0 ; i != data.Length/2 ; i++) {
int tmp = data[i];
data[i] = data[data.Length-i-1];
data[data.Length-i-1] = tmp;
}
}
}
Thread-Safe Function that is not Re-Entrant
This function calls function f() c times, and returns the value that has been returned more times than other values.
static int[] counts = new int[65536];
unsigned short MaxCount(Func<unsigned short> f, int c) {
lock(counts) {
Array.Clear(counts, 0, counts.Length);
for (var i = 0 ; i != c ; i++) {
counts[f()]++;
}
unsigned short res = 0;
for (var i = 1 ; i != counts.Length ; i++) {
if (counts[i] > counts[res]) {
res = i;
}
}
return res;
}
}
This function is thread-safe, because it locks the static array that it uses to do the counting. However, it is not re-entrant: for example, if the functor f passed in were to call MaxCount, wrong results would be returned.