• Building a realloc function?
    Hey guys, since realloc isn't ANSI C and for that not support by KEIL I tried to create my own realloc function. But - as usual - I have some pointer trouble :-/ . Here is my try for this...
  • Building a realloc function?
    Hey guys, since realloc isn't ANSI C and for that not support by KEIL I tried to create my own realloc function. But - as usual - I have some pointer trouble :-/ . Here is my try for this...
  • realloc() crashed
    Hi, does anybody ever work with realloc() and RTX-51 together? do malloc(), free(), realloc() functions make some trouble when work with multitasks? Since RTX-51 only can manage the fix size memory pools...
  • realloc() crashed
    Hi, does anybody ever work with realloc() and RTX-51 together? do malloc(), free(), realloc() functions make some trouble when work with multitasks? Since RTX-51 only can manage the fix size memory pools...
  • Issue with using realloc()
    Using arm-none-eabi-gcc on linux. I am using realloc() on a M3 and find that it does not seem to free the unused blocks ? Here is the sequence I use: uint8_t a = malloc(1000); uint8_t b = realloc...