• any bug with reentrant?
    void func1(unsigned char *buf)reentrant { *buf = 1; } void func2()reentrant { unsigned char ch; func1(&ch); } souce code of func2: MOV DPTR,#0x00FFFF ACALL C?ADDXBP(C:000298) MOV R3,#0x01...
  • Reentrant?
    I rarely ask questions on this forum, but since I couldn't [easily] find it in the help-files, or on-line, I'm asking you guys. I usually (like never) don't use the 'reentrant' pragma, but I think...
  • reentrant
    i am using an 89v51rd2 controller with out external RAM, i use the following reentrant function for one of the functionalities, i cant avoid it because this function can be recursively called any no...
  • REENTRANT
    I am currently trying to resolve a problem with calling printf from within an interrupt and keep getting the following warning. *** WARNING 15: MULTIPLE CALL TO SEGMENT SEGMENT: ?PR?PRINTF?PRINTF...
  • Using Reentrant interrupt on Cortex M family and GCC
    Dear Friends,here they are few lines of GCC-Assembly code to make your interrupt in Cortex-M4 fully reentrant. Please read notes from Sippey   before proceeding to details of implementation of this page...