• 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...
  • 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...
  • Inline function attribute causes undefined symbol linking error
    Hello ARM Community, I am using DS-5 5.18.1. I have a C function which must be compiled inline to decrease latency of an FIQ handler. I referenced following document for syntax: http://infocenter.arm...
  • Inline function attribute causes undefined symbol linking error
    Hello ARM Community, I am using DS-5 5.18.1. I have a C function which must be compiled inline to decrease latency of an FIQ handler. I referenced following document for syntax: http://infocenter.arm...
  • 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...