This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

reentrant function

what is reentrant function?

Parents
  • One which can be called again while it's already running; eg, a recursive call.

    Reentrant functions need special handling in C51 due to the restrictions resulting from the 8051's restricted architecture (particularly lack of stack space).
    See the manual.

Reply
  • One which can be called again while it's already running; eg, a recursive call.

    Reentrant functions need special handling in C51 due to the restrictions resulting from the 8051's restricted architecture (particularly lack of stack space).
    See the manual.

Children