• reentrant function
    what is reentrant function?
  • reentrant function
    hi, 1'm using the RTX51Tiny and am trying to implement a "mailbox"-like function to allow tasks to intercommunicate. The core structure of my program looks like this: //startup.a51 has been modified...
  • 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 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...
  • adding reentrant to typedef function pointers causes redefinition in code
    I am porting some code to an 8051. (header.h) typedef int (Writer) (int , u_char * , u_char , size_t , u_char * , int *) reentrant; (source.h) Writer bob; (source.c) . . . int bob...