Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used to think all reentrant functions are thread-safe. But I read Reentrancy page in Wiki, it posts code that is "perfectly reentrant, but not thread-safe. because it does not ensure the global data is in a consistent state during execution"

int t;

void swap(int *x, int *y)
{
        int s;

        s = t;  // save global variable
        t = *x;
        *x = *y;
        // hardware interrupt might invoke isr() here!
        *y = t;
        t = s;  // restore global variable
}

void isr()
{
        int x = 1, y = 2;
        swap(&x, &y);
}

I don't understand its explanation. Why is this function not thread-safe? Is it because the global variable int t will be changed during threads execution?

share|improve this question
This example is more than a bit contrived. But, re-enterant and thread-safe are orthogonal concepts. – That Chuck Guy Feb 2 '12 at 17:24
Posix has another definition for reentrancy "In POSIX.1c, a "reentrant function" is defined as a "function whose effect, when called by two or more threads, is guaranteed to be as if the threads each executed the function one after another in an undefined order, even if the actual execution is interleaved" , which that (imo. quite bad) example on wikipedia wouldn't comply with – nos Feb 2 '12 at 18:20

6 Answers

up vote 5 down vote accepted

To give a more generic answer, reentrance is only at the function level. It means that one call of the function does not change a state on which can alter the functioning of a second call.

In the example given, the global variable is not changed between two calls of the function. What happens inside of the function has no influence on each call of the function.

An example of the a non reentrant function is strtok

It's for instance not possible to nest 2 parsing loops with it:

 /* To read a several lines of comma separated numbers */
 char buff[WHATEVER], *p1, *p2;

  p1 = strtok(buff, "\n");
  while(p1) {
    p2 = strtok(p1, ",");
    while(p2) {
      atoi(p2);
      p2 = strtok(NULL, ",");
      }
    }
    p1 = strtok(NULL, "\n");
  }

This doesn't work, because the state of the outer strtok loop is clobbered by the second call (one has to use the reentrant variant strtok_r).

share|improve this answer
The question was asking for an explanation of how reentrant functions can be not thread-safe. This does not answer the question, it merely provides an example of the converse. – Jed Sep 21 '12 at 20:12

If you had 2 instances (each on a different thread) executing it, one could step on the other's toes: if one got interrupted at the "hardware interrupt" comment, and another executed, it could change t, so that switching back to the first would have it produce incorrect results.

share|improve this answer

The trick with this type of reentrancy is that the execution of the first call stops while the second call is executed. Just like a subfunction call. The first call continues after the second call completely finished. Because the function saves the state of t at entry and restores it at exit, nothing has changed for the first call when it continues. Therefore you always have a defined and strict order of execution, no matter where exactly the first call is interrupted.

When this function runs in multiple threads, all executions are done in parallel, even in true parallel with a multicore CPU. There is no defined order of execution over all threads, only within a single thread. So the value of t can be changed at any time by one of the other threads.

share|improve this answer
So the reentrancy doesn't include parallel ? for example, foo() {a();b()}, when reentrancy happens, it could only be a (a b) b, but can't be a a b b which multithread could ? – Yifan Zhang Feb 3 '12 at 2:20
Basically yes. The reentrancy as given here is always (a2 b2), because the inner call is always executed completely before the outer call continues. In multithreading, it depends on the thread schedule and could be as well a1 a2 b1 b2. Making a function reentrant doesn't mean it is thread-safe. And the other way: Making it thread-safe doesn't mean it is reentrant. Both have to be handled separately, it is always the question if and how state (i.e. the variables) is shared between the calls and between the threads. – Secure Feb 3 '12 at 7:55

I'm going to attempt to offer another (perhaps less contrived) example of a function which is reentrant, but not thread-safe.

Here is an implementation of the "Towers of Hanoi", using a shared global "temp" stack:

stack_t tmp;

void hanoi_inner(stack_t src, stack_t dest, stack_t tmp, int n)
{
   if (n == 1) move(src, dest)
   else {
     hanoi_inner(src, tmp, dest, n - 1);
     move(src, dest);
     hanoi_inner(tmp, dest, src, n - 1);
   }
}

void hanoi(stack_t src, stack_t dest, int n) { hanoi_inner(src, dest, tmp, n); }

The function hanoi() is reentrant because it leaves the state of the global buffer tmp unchanged when it returns (one caveat: the usual constraint of having an increasing size of discs on tmp may be violated during a reentrant call.) However hanoi() is not thread-safe.

Here is an example which is both thread-safe and reentrant if the increment operator n++ is atomic:

int buf[MAX_SIZE];  /* global, shared buffer structure */
int n;              /* global, shared counter */

int* alloc_int() { return &buf[n++]; }

You really could use this as an allocator for one-integer cells (doesn't check for overflow; I know). If n++ is not an atomic operation, two threads or two reentrant calls could easily end up being allocated the same cell.

share|improve this answer
1  
This one is only reentrant if n++ is atomic (which it usually isn't). Otherwise both calls could end up returning the same pointer. – Per Johansson Feb 2 '12 at 23:10
@per Thanks - I'm going to try to change it to be reentrant without resorting to locking or an atomic n++ – gcbenison Feb 2 '12 at 23:46

Thus function messes with a global variable named t for some bizarre reason. If this function gets called from two different threads at the same time, it's possible that you will get unexpected, incorrect results because one instance will overwrite the value in t that was written by the other instance.

share|improve this answer

If interested with you can test whether your routines are thread-safe or not using the pthread library. For this, consider the code at http://vouters.dyndns.org/tima/All-OS-pthread-How_to_prove_you_suffer_from_a_non_thread-safe-call.html in which you simply have to replace the calls to syslog by calls of yours.

In the hope this can help.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.