• Reentrant Functions
    Hi I need to know if either of the functions defined below is set up the right way to make it reentrant. They are both delay functions that will be called more than once at the same time. I think there...
  • reentrant function
    what is reentrant function?
  • Reentrant function
    Will compiler C51 support reentrant function ? Here, there are two cores 8051 and 80515(advance). Will the function defined as reentrant for both cores will be supported by C51 or not ? Thanks.
  • Reentrant Function call
    Hi. I m using 89C51. I have made all those functions that are called from non-ISR as well as ISR as reentrant and defined reentrant stack in XDATA. Here, i want to know that for each call to reentrant...
  • Locating the reentrant function attribute?
    Hi All. A quick, general question regarding the use of the reentrant (and perhaps other) function attributes: This is fine: void myFn ( void ) reentrant { ... } Is this OK in all cases, too...