Jochen Baier
Jochen Baier
The define NNG_EXPIRE_THREADS not set in CMakeLists.txt. Define is used in nni_aio_sys_init(). Fix in CMakeLists.txt: if (NNG_EXPIRE_THREADS) add_definitions(-DNNG_EXPIRE_THREADS=${NNG_EXPIRE_THREADS}) endif () mark_as_advanced(NNG_EXPIRE_THREADS)
Emulate the behavior of Vim (compared with gvim 9.0.57 on Windows) to use the next bracket text object when the cursor is not inside a bracket text object. The next...
Fix for d motion special case if only en emtpy line wil remain. In this case the motion will be linewise. Example: cat (
At the moment call stack output limited to max 10 different call stacks per monitored API. If you have more then 10 different leaks locations for e.g. malloc() only max...
I have created a memory finder (it also finds deadlocks) that is based on parts of the VLD source code: [BugInsight](https://github.com/JochenBaier/BugInsight) - BugInsight works without linking or recompiling of the...
Test example (Visual Studio 2022, Windows SDK Version 10) ``` #include "mimalloc-new-delete.h" int main() { } ``` Compiling this file with VS 2019 or VS2022 shows these compiler warnings: 1>mimalloc-master\mimalloc-master\include\mimalloc-new-delete.h(40,68):...
In a real application, I had a steady increase in memory with mimalloc. This was the case when the application tried to connect to an unreachable TCP/IP socket every 10...