• init_mempool warning
    when compile below code, it will warning. Is there something wrong? man(void) { init_mempool(0, 100); } *** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS SEGMENT: ?C_INITSEG
  • init_mempool warning
    when compile below code, it will warning. Is there something wrong? man(void) { init_mempool(0, 100); } *** WARNING L16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS SEGMENT: ?C_INITSEG
  • undefined reference to `init_mempool
    i am using Keil uVision3 + ADUC7026, i am trying to allocate #include <ADuC7026.h> #include "stdio.h" #include "stdlib.h" unsigned char memory_pool[0x400]; int main (void) { int *i; init_mempool...
  • undefined reference to `init_mempool
    i am using Keil uVision3 + ADUC7026, i am trying to allocate #include <ADuC7026.h> #include "stdio.h" #include "stdlib.h" unsigned char memory_pool[0x400]; int main (void) { int *i; init_mempool...
  • EC++ new() fails, init_mempool never called?
    In EcMain.cpp the extern void *operator new(size_t size) fails to allocate memory for a new object on its first invocation. I think that the problem is that _main() is never called, so init_mempool is...