Daan

Results 339 comments of Daan

Mmm, it looks like you are not linking with the C standard library (which contains `stdout`) ? I am not very familiar with Android though so perhaps others can pitch...

I might have fixed this issue in the latest `dev` branch -- if you run `minject -h` it should give version 1.2. Can you try if that works for you?...

I think this is a bug since the grammar spec would allow this :-). I'll look into it. btw. even if this is fixed, it may not be what you...

Interesting -- I need to ponder it a bit more; but have you tried `MIMALLOC_DESTROY_ON_EXIT=1` option (you can set it in the program as well). This will (I think) destroy...

Yikes -- that sounds quite tricky. - with the default TLS callback code, the mimalloc process done should be called _after_ the DllMain detach event (I think?). The TLS callback...

Thanks -- hmm, I think 7 should come last; i.e. the intended sequence is: 1. TLS init 2. DllMain -- process attach 3. CRT init 4. main 5. CRT done...

Hi -- I tried to replicate the scenario by creating a DLL that is linked statically with mimalloc, and then loading and unloading that DLL. I did not change things...

I just tried: ```sh $ cmake ../.. -DMI_TRACK_ASAN=ON -DMI_USE_CXX=ON $ make -j $ ./mimalloc-test-stress ``` and it seems to work. Can you provide more info?

Hi -- yes, just a version bump will do the trick; I am planning to do a fresh release soon (maybe end of this week, maybe next week) since there...

Thanks Andres for your report. Note that the warnings in this case are a bit "pedantic": they can be useful to debug performance problems but in principle the "overallocation" path...