DUMA Release Date

I know that some of you out there have been waiting for our release of DUMA for BREW, which we announced in our talk at BREW 2007. We’re still finalising the documentation for this – but it will be out on Tuesday 17th July. Check back here then, and in the meantime, sorry for the delay!

One Response to “DUMA Release Date”

  1. niyang Says:

    where is my comments? i have just posted it right here!
    ok ,i write again,
    in order to run in c enviorment i changed crt.cpp and crt.hpp to c and h files.and in crt.h i added :#define MALLOC as_malloc and free as well.
    but in debuging i always stopped at here:(DUMA_abort fun)and found the sentence :
    address not from DUMA or already freed.i dont know why?is it overrun?i dont think so.
    #ifndef WIN32
    /*
    * I use kill(getpid(), SIGILL) instead of abort() because some
    * mis-guided implementations of abort() flush stdio, which can
    * cause malloc() or free() to be called.
    */
    kill(getpid(), SIGILL);
    #else
    /* Windows doesn’t have a kill() */
    __asm int 3
    //abort();
    #endif
    /* Just in case something handles SIGILL and returns, exit here. */
    __asm int 3
    // _exit(-1);

Leave a Reply